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

26
BlendFile/DNA/bToolRef.cs Normal file
View File

@@ -0,0 +1,26 @@
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class bToolRef {
public bToolRef ptr_next;
public bToolRef ptr_prev;
public char[] idname = new System.Char[64];
public char[] idname_fallback = new System.Char[64];
public short tag;
public short space_type;
public int mode;
public IDProperty ptr_properties;
public bToolRef_Runtime ptr_runtime;
public bToolRef(bToolRef ptr_next, bToolRef ptr_prev, char[] idname, char[] idname_fallback, short tag, short space_type, int mode, IDProperty ptr_properties, bToolRef_Runtime ptr_runtime) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.idname = idname;
this.idname_fallback = idname_fallback;
this.tag = tag;
this.space_type = space_type;
this.mode = mode;
this.ptr_properties = ptr_properties;
this.ptr_runtime = ptr_runtime;
}
}
}