//------------------------------------------------------------------------------ // // 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(1018, "vec3i", 12)] public class vec3i { [DNAFieldAttribute(4, "int", 0, "x", "int", false, 0)] public int x; [DNAFieldAttribute(4, "int", 1, "y", "int", false, 4)] public int y; [DNAFieldAttribute(4, "int", 2, "z", "int", false, 8)] public int z; public vec3i() { this.x = default; this.y = default; this.z = default; } public vec3i(int x, int y, int z) { this.x = x; this.y = y; this.z = z; } } }