Add GameHud component to display player stats; include experience, coins, round time left, and health

This commit is contained in:
2025-07-12 17:10:14 +02:00
parent 4b68446ea9
commit f29b258e06
6 changed files with 191 additions and 2 deletions

View File

@@ -25,6 +25,7 @@ namespace Systems
public float RoundTime => roundTime;
public int MaxRounds => maxRounds;
public bool StoreIsClosed { get; set; } = true;
public float RoundTimeLeft => Mathf.Max(0, timer);
public event Action<int> OnRoundStart;
public event Action<int> OnRoundEnd;