I have a class called Sprite, and ballSprite is an instance of that class. Sprite has a Vector2 property called Position.
I\'m trying to increment the Vector\'s X c
You can do
Position = new Vector2(Position.X + 1, Position.Y );
or
Position += new Vector2( 1.0f, 0.0f );
Position.X += 1.0f;