Generated new code and added initial data handling

This commit is contained in:
mm00
2025-01-27 19:24:50 +01:00
parent ebcc629feb
commit 146a3992ce
940 changed files with 11560 additions and 9 deletions

View File

@@ -29,6 +29,15 @@ namespace BlendFile.DNA {
public byte[] _pad1 = new System.Byte[3];
[DNAFieldAttribute(6, "ActionSlotRuntimeHandle", "*runtime", 0)]
public ActionSlotRuntimeHandle ptr_runtime;
public ActionSlot() {
this.name = default;
this._pad0 = default;
this.idtype = default;
this.handle = default;
this.slot_flags = default;
this._pad1 = default;
this.ptr_runtime = default;
}
public ActionSlot(char[] name, byte[] _pad0, int idtype, int handle, sbyte slot_flags, byte[] _pad1, ActionSlotRuntimeHandle ptr_runtime) {
this.name = name;
this._pad0 = _pad0;