//------------------------------------------------------------------------------ // // 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(724, "NodeGeometryDeleteGeometry", 2)] public struct NodeGeometryDeleteGeometry { [DNAFieldAttribute(0, "int8_t", "domain", "int8_t", 1, false, 0)] public sbyte domain; [DNAFieldAttribute(1, "int8_t", "mode", "int8_t", 1, false, 1)] public sbyte mode; public NodeGeometryDeleteGeometry() { this.domain = default; this.mode = default; } public NodeGeometryDeleteGeometry(sbyte domain, sbyte mode) { this.domain = domain; this.mode = mode; } } }