Files
BlenderSharp/BlendFile/DNA/vec2i.cs
2025-03-04 18:48:04 +01:00

32 lines
861 B
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
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;
}
}
}