Files
BlenderSharp/BlendFile/DNA/MFace.cs

36 lines
1014 B
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using BlendFile.CompatTypes;
using System;
// Automatically generated by BlenderSharp at 22/01/2025 02:33:14
namespace BlendFile.DNA {
public struct MFace {
public int v1;
public int v2;
public int v3;
public int v4;
public short mat_nr;
public char edcode;
public char flag;
public MFace(int v1, int v2, int v3, int v4, short mat_nr, char edcode, char flag) {
this.v1 = v1;
this.v2 = v2;
this.v3 = v3;
this.v4 = v4;
this.mat_nr = mat_nr;
this.edcode = edcode;
this.flag = flag;
}
}
}