DBmanager.cs
377 Bytes
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public static class DBmanager
{
public static string username;
public static int bank;
public static int loses;
public static int wins;
public static bool LoggedIn { get { return username != null; } }
public static void LogOut()
{
username = null;
}
}