public Float2(Int2 int2) { this.x = int2.X; this.y = int2.Y; }
public Int2(Int2 int2) { this.x = int2.x; this.y = int2.y; }