Esempio n. 1
0
        public static void Draw(SpriteBatch spriteBatch)
        {
            if (!IsShow)
            {
                return;
            }

            if (SaveLoadInterface.IsShow)
            {
                SaveLoadInterface.Draw(spriteBatch);
            }
            else if (TitleInterface.IsShow)
            {
                TitleInterface.Draw(spriteBatch);
            }
            else
            {
                TimerInterface.Draw(spriteBatch);
                TopInterface.Draw(spriteBatch);
                MagicInterface.Draw(spriteBatch);
                XiuLianInterface.Draw(spriteBatch);
                GoodsInterface.Draw(spriteBatch);
                BuyInterface.Draw(spriteBatch);
                MemoInterface.Draw(spriteBatch);
                StateInterface.Draw(spriteBatch);
                EquipInterface.Draw(spriteBatch);
                ColumnInterface.Draw(spriteBatch);
                BottomInterface.Draw(spriteBatch);
                ToolTipInterface.Draw(spriteBatch);
                MessageInterface.Draw(spriteBatch);
                DialogInterface.Draw(spriteBatch);
                SelectionInterface.Draw(spriteBatch);

                SystemInterface.Draw(spriteBatch);

                LittleMapInterface.Draw(spriteBatch);
                LittleHeadInterface.Draw(spriteBatch);
            }

            MouseInterface.Draw(spriteBatch);
        }