default initialize

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
David Markowitz
2026-06-21 21:15:12 -07:00
committed by GitHub
parent 90b4913c55
commit 539ff2bac2

View File

@@ -976,8 +976,8 @@ namespace GameMessages {
struct NotifyCombatAIStateChange : public GameMsg {
NotifyCombatAIStateChange() : GameMsg(MessageType::Game::NOTIFY_COMBAT_AI_STATE_CHANGE) {}
AiState newState;
AiState prevState;
AiState newState{};
AiState prevState{};
};
};
#endif // GAMEMESSAGES_H