I've just started using XNA Studio Express and Programming in C# so my knowledge is kinda minimal. So I've started with the tutorials 2D Cannon game that MS provide, but I'm stack on loading a background
because although it compiles perfectly when I run it, it says that it can't find the file. But i followed everything to the letter
protected override void LoadContent()
{
spriteBatch = new SpriteBatch(graphics.GraphicsDevice);
backgroundTexture =
Content.Load<Texture2D>("Sprites\\background"); <--------Here
//Create a Rectangle that represents the full
//drawable area of the game screen.
viewportRect = new Rectangle(0, 0,
graphics.GraphicsDevice.Viewport.Width,
graphics.GraphicsDevice.Viewport.Height);
base.LoadContent();
}
Could someone help me pls : )