Added Generation Output
This commit is contained in:
30
BlendFile/DNA/IDProperty.cs
Normal file
30
BlendFile/DNA/IDProperty.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
|
||||
namespace BlendFile.DNA {
|
||||
|
||||
public class IDProperty {
|
||||
public IDProperty ptr_next;
|
||||
public IDProperty ptr_prev;
|
||||
public char type;
|
||||
public char subtype;
|
||||
public short flag;
|
||||
public char[] name = new System.Char[64];
|
||||
public char[] _pad0 = new System.Char[4];
|
||||
public IDPropertyData data;
|
||||
public int len;
|
||||
public int totallen;
|
||||
public IDPropertyUIData ptr_ui_data;
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user