From edaafadf2c5de7f23dfc20d420e973ed9dc92039 Mon Sep 17 00:00:00 2001 From: nathan Date: Wed, 17 Dec 2025 16:05:49 -0700 Subject: Progress, I guess... --- src/game.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/game.c') diff --git a/src/game.c b/src/game.c index 9d7686f..a6ed57a 100644 --- a/src/game.c +++ b/src/game.c @@ -85,6 +85,9 @@ void initGame(Game* game) // Map. initMap(&game->map, &game->world, &game->settings); + // Interaction chat. + initInteractionChat(&game->chat); + disableGameCursor(game); } @@ -186,6 +189,7 @@ void updateGameScene(Game* game) drawGameScreen(game); updateMap(&game->map, game); + updateInteractionChat(&game->chat, game); // Cross hair. if (IsKeyPressed(game->settings.toggleCrossHairKey)) -- cgit v1.2.3