diff --git a/game.c b/game.c index cf98732..bde4284 100644 --- a/game.c +++ b/game.c @@ -195,11 +195,17 @@ void handle_input(Game *g) { return dialog_handle_input(g->dialog); } + /* if (IsKeyPressed(KEY_R)) { g->state = GAME_STATE_INITIALIZING; return; } + if (IsKeyPressed(KEY_S)) { + ExportImage(LoadImageFromScreen(), "img.png"); + } + */ + if (!is_player_turn(g)) return; switch (g->state) {