Example #1
0
 public Vector2Rectangle(Vector2 position, IntVector2 size)
 {
     Position = position;
     Size = new Vector2(size.X, size.Y);
 }
Example #2
0
 public Vector2Rectangle(IntVector2 position, Vector2 size)
 {
     Position = new Vector2(position.X, position.Y);
     Size = size;
 }