//------------------------------------------------------------------------------ // // 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(1017, "vec2i", 8)] public struct vec2i { [DNAFieldAttribute(0, "int", "x", "int", 4, false, 0)] public int x; [DNAFieldAttribute(1, "int", "y", "int", 4, false, 4)] public int y; public vec2i() { this.x = default; this.y = default; } public vec2i(int x, int y) { this.x = x; this.y = y; } } }