create constants from world.odin

This commit is contained in:
2026-06-28 00:14:39 -07:00
parent 9317e83fd5
commit 8585a18894
2 changed files with 7 additions and 2 deletions
+2 -2
View File
@@ -17,8 +17,8 @@ World :: struct {
init_world :: proc() -> World {
world := World {
gold = 100,
base_health = 20,
gold = STARTING_GOLD,
base_health = STARTING_BASE_HEALTH,
phase = .Build,
selected_tower = .Archer,
}