Added Generation Output

This commit is contained in:
Samuele Lorefice
2025-01-22 02:23:29 +01:00
parent 83b207b799
commit fa78292a67
936 changed files with 31758 additions and 0 deletions

View 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;
}
}
}