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