Static_GlobalStats.cs 456 B

12345678910111213141516171819
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public static class Static_GlobalStats
  5. {
  6. public static int lifes = 3;
  7. public static int totalScore = 0;
  8. public static int levelScore = 0;
  9. public static int health = 100;
  10. public static float time = 0;
  11. public static int bauteile = 0;
  12. public static int bauteileLevel = 0;
  13. public static int bauteileMax = 25;
  14. public static bool paused = false;
  15. }