//------------------------------------------------------------------------------ // // 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 System; namespace BlendFile.DNA { using BlendFile; [DNAClassAttribute(790, "PTCacheExtra", 32)] public class PTCacheExtra { [DNAFieldAttribute(0, "PTCacheExtra", "*next", "PTCacheExtra", 8, true)] public PTCacheExtra ptr_next; [DNAFieldAttribute(1, "PTCacheExtra", "*prev", "PTCacheExtra", 8, true)] public PTCacheExtra ptr_prev; [DNAFieldAttribute(2, "int", "type", "int", 4, false)] public int type; [DNAFieldAttribute(3, "int", "totdata", "int", 4, false)] public int totdata; [DNAFieldAttribute(4, "void", "*data", "void", 8, true)] public object ptr_data; public PTCacheExtra() { this.ptr_next = default; this.ptr_prev = default; this.type = default; this.totdata = default; this.ptr_data = default; } public PTCacheExtra(PTCacheExtra ptr_next, PTCacheExtra ptr_prev, int type, int totdata, object ptr_data) { this.ptr_next = ptr_next; this.ptr_prev = ptr_prev; this.type = type; this.totdata = totdata; this.ptr_data = ptr_data; } } }