コード例 #1
0
        public void Draw(SpriteBatch spriteBatch, GraphicsDeviceManager graphics)
        {
            if (StackSize == 0)
            {
                return;
            }
            GameStack.Peek().Draw(spriteBatch, graphics);

            // For fades
            ScreenFader.Draw(spriteBatch, graphics);
        }