Remove redundant comment for stat initialization in GameState constructor

This commit is contained in:
2025-08-23 15:12:08 +02:00
parent a6c6bde622
commit 8efbc9cc6e

View File

@@ -13,7 +13,6 @@ public class GameState
public GameState() public GameState()
{ {
// Initialize all stats with their default values
foreach (Stat stat in Enum.GetValues(typeof(Stat))) foreach (Stat stat in Enum.GetValues(typeof(Stat)))
{ {
_stats[stat] = new StatData(); _stats[stat] = new StatData();