예제 #1
0
파일: GameBoard.cs 프로젝트: xblad/2048-wpf
        public static bool CheckAndSetGameStateGameOver(TilesMovePlan mp)
        {
            if (mp.IsBlindAlleyForAnyDirection()) // check all posible directions
            {
                return(SetGameStateGameOver());
            }

            return(false);
        }