예제 #1
0
        //////////////
        // GAMEPLAY //
        //////////////

        public void Start()
        {
            active = true;

            while (active)
            {
                active = (TakeTurn() && board.CheckForLegalMoves(turn));
            }

            End();
        }