Can't find the answer anywhere, hoping you guys can help, thanks in advanced. These were loaded in the beginning of the file-
SpriteBatch mBatch;
Texture2D mTheQuantumBros2;
protected override void LoadContent()
{
// Create a new SpriteBatch, which can be used to draw textures.
spriteBatch = new SpriteBatch(GraphicsDevice);
mBatch = new SpriteBatch(this.graphics.GraphicsDevice);
//Create the Content Manager object to load images
ContentManager aLoader = new ContentManager(this.Services);
//Use the Content Manager to load the Cat Creature image into the Texture2D object
mTheQuantumBros2 = aLoader.Load<Texture2D>("TheQuantumBros2") as Texture2D;
// TODO: use this.Content to load your game content here
}
Error is saying the file is not found. File is TheQuantumBros2.png and I tried loading under the original game area and the content area. Neither is working and I put them in the directory and loaded them into the game on Visual Studio also. Ideas?