//------------------------------------------------------------------------------ // // 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(335, "IpoDriver")] public class IpoDriver { [DNAFieldAttribute(0, "Object", "*ob", "Object", 1160)] public Object ptr_ob; [DNAFieldAttribute(1, "short", "blocktype", "short", 2)] public short blocktype; [DNAFieldAttribute(2, "short", "adrcode", "short", 2)] public short adrcode; [DNAFieldAttribute(3, "short", "type", "short", 2)] public short type; [DNAFieldAttribute(4, "short", "flag", "short", 2)] public short flag; [DNAFieldAttribute(5, "char", "name[128]", "System.Char[]", 1)] public char[] name = new System.Char[128]; public IpoDriver() { this.ptr_ob = default; this.blocktype = default; this.adrcode = default; this.type = default; this.flag = default; this.name = default; } public IpoDriver(Object ptr_ob, short blocktype, short adrcode, short type, short flag, char[] name) { this.ptr_ob = ptr_ob; this.blocktype = blocktype; this.adrcode = adrcode; this.type = type; this.flag = flag; this.name = name; } } }