frostyfire

DBManager

Aug 21st, 2019
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4.  
  5. public static class DBManager
  6. {
  7.  
  8. public static string username;
  9. public static string house;
  10. public static int score;
  11.  
  12. public static int mackScore;
  13. public static int namaScore;
  14. public static int flynnScore;
  15. public static int oodgerScore;
  16. public static int mitchScore;
  17. public static int parerScore;
  18.  
  19. public static string firstName;
  20. public static int firstScore;
  21. public static string firstHouse;
  22. public static string secondName;
  23. public static int secondScore;
  24. public static string secondHouse;
  25. public static string thirdName;
  26. public static int thirdScore;
  27. public static string thirdHouse;
  28.  
  29.  
  30. public static bool LoggedIn { get { return username != null; } }
  31.  
  32. public static void LogOut()
  33. {
  34. username = null;
  35. }
  36.  
  37.  
  38. }
Advertisement
Add Comment
Please, Sign In to add comment