//------------------------------------------------------------------------------ // // 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(599, "NodeFrame")] public struct NodeFrame { [DNAFieldAttribute(0, "short", "flag", "short", 2, false)] public short flag; [DNAFieldAttribute(1, "short", "label_size", "short", 2, false)] public short label_size; public NodeFrame() { this.flag = default; this.label_size = default; } public NodeFrame(short flag, short label_size) { this.flag = flag; this.label_size = label_size; } } }