//------------------------------------------------------------------------------ // // 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(519, "NodesModifierPanel", 8)] public struct NodesModifierPanel { [DNAFieldAttribute(0, "int", "id", "int", 4, false)] public int id; [DNAFieldAttribute(1, "int", "flag", "int", 4, false)] public int flag; public NodesModifierPanel() { this.id = default; this.flag = default; } public NodesModifierPanel(int id, int flag) { this.id = id; this.flag = flag; } } }