Exemplo n.º 1
0
 public Float2(Int2 int2)
 {
     this.x = int2.X;
     this.y = int2.Y;
 }
Exemplo n.º 2
0
 public Int2(Int2 int2)
 {
     this.x = int2.x;
     this.y = int2.y;
 }