protected override void Draw(GameTime gameTime) { GraphicsDevice.Clear(Color.CornflowerBlue); spriteBatch.Begin(); DrawScenery(); // TEMP draw game entities pigObject.Draw(spriteBatch); spriteBatch.End(); base.Draw(gameTime); }