thrive/01_text_adventure/game.c

11 lines
313 B
C
Raw Normal View History

2025-01-03 21:07:44 -05:00
#include "game.h"
void gs_handle_command(GameState *gs, const char *command) {
Input *input = gs->input;
if (strcmp(input->input_buffer, "QUIT") == 0) {
*(gs->should_close) = true;
} else if (strcmp(input->input_buffer, "LOOK") == 0) {
push_line_to_log(input->log, gs->rooms[0].description);
2025-01-03 21:07:44 -05:00
}
}