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;
|
2025-01-03 21:24:56 -05:00
|
|
|
} 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
|
|
|
}
|
|
|
|
}
|