//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using BlendFile.CompatTypes; using System; // Automatically generated by BlenderSharp at 22/01/2025 02:33:14 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; } } }