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

38
BlendFile/DNA/Key.cs Normal file
View File

@@ -0,0 +1,38 @@
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class Key {
public ID id;
public AnimData ptr_adt;
public KeyBlock ptr_refkey;
public char[] elemstr = new System.Char[32];
public int elemsize;
public char[] _pad = new System.Char[4];
public ListBase block;
public Ipo ptr_ipo;
public ID ptr_from;
public int totkey;
public short flag;
public char type;
public char _pad2;
public float ctime;
public int uidgen;
public Key(ID id, AnimData ptr_adt, KeyBlock ptr_refkey, char[] elemstr, int elemsize, char[] _pad, ListBase block, Ipo ptr_ipo, ID ptr_from, int totkey, short flag, char type, char _pad2, float ctime, int uidgen) {
this.id = id;
this.ptr_adt = ptr_adt;
this.ptr_refkey = ptr_refkey;
this.elemstr = elemstr;
this.elemsize = elemsize;
this._pad = _pad;
this.block = block;
this.ptr_ipo = ptr_ipo;
this.ptr_from = ptr_from;
this.totkey = totkey;
this.flag = flag;
this.type = type;
this._pad2 = _pad2;
this.ctime = ctime;
this.uidgen = uidgen;
}
}
}