ChessConsole.Utils.IsNotInGame C# (CSharp) Method

IsNotInGame() public static method

public static IsNotInGame ( ) : bool
return bool
        public static bool IsNotInGame()
        {
            if (CurrentUser.CurrentGame != null)
            {
                Console.WriteLine("End current game first!");
                return false;
            }
            return true;
        }