Exemplo n.º 1
0
        /// <summary>
        /// Indicates to the loaded game mode that it should
        /// perform any drawing routines.
        /// </summary>
        /// <param name="args"></param>
        public static void Draw()
        {
            // Set the backend
            DrawingArgs args = new DrawingArgs();

            args.Backend = backend;

            // Check for game mode
            if (gameMode != null)
            {
                gameMode.Draw(args);
            }
        }