Пример #1
0
        /// <summary>
        /// The main game draw method, which draws all in-game objects.
        /// </summary>
        void playingGameDraw()
        {
            //Draw the main level background
            level.draw(spriteBatch);

            //If the game has not been started, draw the start message
            if (!started)
            {
                startMessage.draw(spriteBatch);
            }
        }