Files
BlenderSharp/BlendFile/DNA/IDProperty.cs
2025-02-19 17:07:50 +01:00

68 lines
2.7 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(25, "IDProperty")]
public class IDProperty {
[DNAFieldAttribute(0, "IDProperty", "*next", "IDProperty", 4, true)]
public IDProperty ptr_next;
[DNAFieldAttribute(1, "IDProperty", "*prev", "IDProperty", 4, true)]
public IDProperty ptr_prev;
[DNAFieldAttribute(2, "char", "type", "char", 1, false)]
public char type;
[DNAFieldAttribute(3, "char", "subtype", "char", 1, false)]
public char subtype;
[DNAFieldAttribute(4, "short", "flag", "short", 2, false)]
public short flag;
[DNAFieldAttribute(5, "char", "name[64]", "System.Char[]", 64, false)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(6, "char", "_pad0[4]", "System.Char[]", 4, false)]
public char[] _pad0 = new System.Char[4];
[DNAFieldAttribute(7, "IDPropertyData", "data", "IDPropertyData", 32, false)]
public IDPropertyData data;
[DNAFieldAttribute(8, "int", "len", "int", 4, false)]
public int len;
[DNAFieldAttribute(9, "int", "totallen", "int", 4, false)]
public int totallen;
[DNAFieldAttribute(10, "IDPropertyUIData", "*ui_data", "IDPropertyUIData", 4, true)]
public IDPropertyUIData ptr_ui_data;
public IDProperty() {
this.ptr_next = default;
this.ptr_prev = default;
this.type = default;
this.subtype = default;
this.flag = default;
this.name = default;
this._pad0 = default;
this.data = default;
this.len = default;
this.totallen = default;
this.ptr_ui_data = default;
}
public IDProperty(IDProperty ptr_next, IDProperty ptr_prev, char type, char subtype, short flag, char[] name, char[] _pad0, IDPropertyData data, int len, int totallen, IDPropertyUIData ptr_ui_data) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.type = type;
this.subtype = subtype;
this.flag = flag;
this.name = name;
this._pad0 = _pad0;
this.data = data;
this.len = len;
this.totallen = totallen;
this.ptr_ui_data = ptr_ui_data;
}
}
}