add event queue, tower archetypes, and enemy damage. no projectiles yet

This commit is contained in:
2026-06-11 01:05:17 -07:00
parent dd6a5684be
commit 285b434499
4 changed files with 95 additions and 4 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ execute_command :: proc(world: ^World, cmd: Command) {
case .Spawn_Test:
spawn_group(world, 3)
case .Place_Tower:
try_place_tower(world, cmd.gx, cmd.gy)
try_place_tower(world, cmd.gx, cmd.gy, .Archer)
}
}