//------------------------------------------------------------------------------ // // 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(23, "IDPropertyData", 32)] public class IDPropertyData { [DNAFieldAttribute(8, "void", 0, "*pointer", "void", true, 0)] public object pointer; [DNAFieldAttribute(16, "ListBase", 1, "group", "ListBase", false, 8)] public ListBase group; [DNAFieldAttribute(4, "int", 2, "val", "int", false, 24)] public int val; [DNAFieldAttribute(4, "int", 3, "val2", "int", false, 28)] public int val2; public IDPropertyData() { this.pointer = default; this.group = default; this.val = default; this.val2 = default; } public IDPropertyData(object pointer, ListBase group, int val, int val2) { this.pointer = pointer; this.group = group; this.val = val; this.val2 = val2; } } }