コード例 #1
0
ファイル: GameCore.cs プロジェクト: Eule01/OpenGlGame
        public void Close()
        {
            if (theKeyboardBindingsForm != null)
            {
                Async.UI(delegate { theKeyboardBindingsForm.Close(); }, theKeyboardBindingsForm, false);
            }
            if (theMenuForm != null)
            {
                Async.UI(delegate { theMenuForm.Close(); }, theMenuForm, false);
            }
            theGameEngine.Close();
            theRendererManager.Close();
//            theRenderer.Close();
            theGameStatus.Close();
        }