//------------------------------------------------------------------------------ // // 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 class vec2i { [DNAFieldAttribute(4, "int", 0, "x", "int", false, 0)] public int x; [DNAFieldAttribute(4, "int", 1, "y", "int", 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; } } }