11 lines
313 B
C
11 lines
313 B
C
#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);
|
|
}
|
|
}
|