コード例 #1
0
ファイル: TheGame.cs プロジェクト: Foxbow74/my-busycator
        public void Run()
        {
            UiBlocks.Clear();
            World.LetItBeeee(m_gameProvider.GetLanguageProcessors().First());
            m_mainUiBlock = new MainUiBlock(m_gameProvider.Width / Constants.TILE_SIZE, m_gameProvider.Height / Constants.TILE_SIZE);
            UiBlocks.Push(m_mainUiBlock);

            World.TheWorld.UpdateDPoint();

            MessageManager.SendMessage(this, WorldMessage.AvatarMove);
            MessageManager.SendMessage(this, "[?] - экран помощи");
        }