Advertisement
sphinx2001

GameSystem.cs

Feb 5th, 2021
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4.  
  5. public static class GameSystem
  6. {
  7. public static int HP = 100;
  8. public static int Money = 100000;
  9. public static int MonsterCount = 20;
  10. }
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement