Commit 00765aa0 by alsunj

Upload New File

parent 07e4831b
Showing with 20 additions and 0 deletions
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;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment