monopoly/Assets/Scripts/login/UserManager.cs
2020-11-24 18:35:01 +00:00

16 lines
293 B
C#

using System.Collections;
using System.Collections.Generic;
public static class UserManager
{
public static int userID;
public static string username;
public static bool LoggedIn => username != null;
public static void LogOut()
{
username = null;
}
}