mirror of
https://github.com/smyalygames/monopoly.git
synced 2025-05-18 06:14:10 +02:00
16 lines
293 B
C#
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;
|
|
}
|
|
}
|