Files
BlenderSharp/BlendFile/DNA/MFace.cs
Samuele Lorefice 439cea385f Regenerated files
2025-01-22 18:11:19 +01:00

34 lines
919 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 System;
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;
}
}
}