Пример #1
-3
        public void Draw(Graphics.GraphicsFacade graphics)
        {
            graphics.DrawTitle();
            graphics.DrawLogo();
            graphics.DrawIP();
            graphics.DrawSkip();

            if (server)
            {
                graphics.DrawHosting();
            }
            else
            {
                graphics.DrawHost();
            }

            graphics.DrawFinish();

            lobby.Draw(graphics);
            enterip.Draw(graphics);
            if(Graphics.GraphicsFacade.mode == GraphicsFacade.Mode.BOARD)
                graphics.DrawText(System.Drawing.Color.White, 100, 16, LotusGame.get().players[LotusGame.get().currentPlayer].name + "'s Turn (" + LotusGame.get().players[LotusGame.get().currentPlayer].color.Name + ")");
            chat.Draw(graphics);
        }