I was wondering if there was a way I could set the origin to the center of the screen.
for example I usually do this:
`origin = new vector2D(image.height / 2, image.width /2);
spritebatch.Draw(image, vector.zero,null, Color, 0, origin, none, 0); `
and now the origin of an image is on the middle. I want to be able to do a vector.zero and place the image on the middle of the screen with out doing what I usually do. Is that possible?