diff options
| author | nathan <nathansmith@disroot.org> | 2025-12-17 23:05:49 +0000 |
|---|---|---|
| committer | nathan <nathansmith@disroot.org> | 2025-12-17 23:05:49 +0000 |
| commit | edaafadf2c5de7f23dfc20d420e973ed9dc92039 (patch) | |
| tree | 1cbfc2cbdbbda1052144947eef39224ff01877ce /src/game.c | |
| parent | 0cddd5649838c0d37c0e4b12786d040ffdb01c97 (diff) | |
| download | FindThings-edaafadf2c5de7f23dfc20d420e973ed9dc92039.tar.gz FindThings-edaafadf2c5de7f23dfc20d420e973ed9dc92039.tar.bz2 FindThings-edaafadf2c5de7f23dfc20d420e973ed9dc92039.zip | |
Progress, I guess...
Diffstat (limited to 'src/game.c')
| -rw-r--r-- | src/game.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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)) |
