ChessConsole.Utils.IsNotInGame C# (CSharp) Метод

IsNotInGame() публичный статический Метод

public static IsNotInGame ( ) : bool
Результат bool
        public static bool IsNotInGame()
        {
            if (CurrentUser.CurrentGame != null)
            {
                Console.WriteLine("End current game first!");
                return false;
            }
            return true;
        }