//------------------------------------------------------------------------------ // // 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(585, "bNodeSocketValueInt", 16)] public struct bNodeSocketValueInt { [DNAFieldAttribute(0, "int", "subtype", "int", 4, false, 0)] public int subtype; [DNAFieldAttribute(1, "int", "value", "int", 4, false, 4)] public int value; [DNAFieldAttribute(2, "int", "min", "int", 4, false, 8)] public int min; [DNAFieldAttribute(3, "int", "max", "int", 4, false, 12)] public int max; public bNodeSocketValueInt() { this.subtype = default; this.value = default; this.min = default; this.max = default; } public bNodeSocketValueInt(int subtype, int value, int min, int max) { this.subtype = subtype; this.value = value; this.min = min; this.max = max; } } }