Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

alsunj / blackjack

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • blackjack
  • scripts
  • C#
  • DBmanager.cs
Find file
BlameHistoryPermalink
  • alsunj's avatar
    Upload New File · 00765aa0
    alsunj committed 2 years ago
    00765aa0
DBmanager.cs 377 Bytes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
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;
    }

}