thrive/01_text_adventure/game.c

11 lines
244 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 {
push_input_buffer_to_log(input);
}
}