Usually in Java when I need to store 2 int value related to some graphic properties I use Dimension Object:
Dimension d = new Dimension(x,y);
Is there any similar object in C# (and XNA)? I’m currently using Vector2 but it’s designed for floating values.
Actually I need such a structure to create a list of screen coordinates. I’m looking for something to use this way:
IList<Dimension> list = new List<Dimension>();
list.add(new Dimension(800,600));
...
Point: