Example #1
0
        private void startFormOthello(FormGameSettings i_FormGameSettings)
        {
            // this method execute form othello
            FormOthello formOthello;

            formOthello = new FormOthello(m_GameLogic, i_FormGameSettings.BoardSize, i_FormGameSettings.GameMode);
            formOthello.Initialize();
            Application.Run(formOthello);
        }
Example #2
0
        private static FormGameSettings startFormGameSettings()
        {
            // this method excute form game settings and return the form.
            FormGameSettings formGameSettings = new FormGameSettings();

            Application.Run(formGameSettings);

            return(formGameSettings);
        }