From c36d98f4ac90cfd8a96319b39ce4b4df62c4e360 Mon Sep 17 00:00:00 2001 From: jedarden Date: Sun, 24 May 2026 19:19:45 -0400 Subject: [PATCH] style(engine): align struct field names in GameState Align ZoneCenter and ZoneRadius field spacing for consistency. No functional change. --- engine/game.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/engine/game.go b/engine/game.go index 3007e42..ecb7357 100644 --- a/engine/game.go +++ b/engine/game.go @@ -32,10 +32,10 @@ type GameState struct { LastTotalBots int // total living bots at last progress // Zone (storm) state - ZoneCenter Position // center of the zone (map center) - ZoneRadius int // current radius of the safe zone - ZoneActive bool // whether the zone is currently shrinking - CombatDeaths []int // combat deaths per player (tracked for final stats) + ZoneCenter Position // center of the zone (map center) + ZoneRadius int // current radius of the safe zone + ZoneActive bool // whether the zone is currently shrinking + CombatDeaths []int // combat deaths per player (tracked for final stats) } // Event represents something that happened during a turn.