Files
BlenderSharp/BlendFile/DNA/bFaceMap.cs
2025-03-04 18:48:04 +01:00

44 lines
1.5 KiB
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 {
using BlendFile;
[DNAClassAttribute(765, "bFaceMap", 88)]
public class bFaceMap {
[DNAFieldAttribute(8, "bFaceMap", 0, "*next", "bFaceMap", true, 0)]
public bFaceMap next;
[DNAFieldAttribute(8, "bFaceMap", 1, "*prev", "bFaceMap", true, 8)]
public bFaceMap prev;
[DNAFieldAttribute(64, "char", 2, "name[64]", "System.Char[]", false, 16)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(1, "char", 3, "flag", "char", false, 80)]
public char flag;
[DNAFieldAttribute(7, "char", 4, "_pad0[7]", "System.Char[]", false, 81)]
public char[] _pad0 = new System.Char[7];
public bFaceMap() {
this.next = default;
this.prev = default;
this.name = default;
this.flag = default;
this._pad0 = default;
}
public bFaceMap(bFaceMap next, bFaceMap prev, char[] name, char flag, char[] _pad0) {
this.next = next;
this.prev = prev;
this.name = name;
this.flag = flag;
this._pad0 = _pad0;
}
}
}