hey,
I want my cannon sprite to be able to move when I move my mouse on the X axis.
atm I have this:
MouseState curMouse = Mouse.GetState();
Vector2 mouseLoc = new Vector2(curMouse.X, curMouse.Y);
mouseLoc = cannon.position;
but that doesnt work.
any ideas?