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

30
BlendFile/DNA/Base.cs Normal file
View File

@@ -0,0 +1,30 @@
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class Base {
public Base ptr_next;
public Base ptr_prev;
public Object ptr_object;
public Base ptr_base_orig;
public int lay;
public short flag;
public short flag_from_collection;
public short flag_legacy;
public short local_view_bits;
public short local_collections_bits;
public char[] _pad1 = new System.Char[2];
public Base(Base ptr_next, Base ptr_prev, Object ptr_object, Base ptr_base_orig, int lay, short flag, short flag_from_collection, short flag_legacy, short local_view_bits, short local_collections_bits, char[] _pad1) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.ptr_object = ptr_object;
this.ptr_base_orig = ptr_base_orig;
this.lay = lay;
this.flag = flag;
this.flag_from_collection = flag_from_collection;
this.flag_legacy = flag_legacy;
this.local_view_bits = local_view_bits;
this.local_collections_bits = local_collections_bits;
this._pad1 = _pad1;
}
}
}