thrive/01_text_adventure/game.h

16 lines
243 B
C
Raw Normal View History

2025-01-02 20:57:00 -05:00
#ifndef _FD_GAME_
#define _FD_GAME_
#include <stdbool.h>
2025-01-03 20:58:02 -05:00
typedef struct GameState GameState;
#include "input.h"
2025-01-02 20:57:00 -05:00
2025-01-03 20:58:02 -05:00
struct GameState {
2025-01-02 20:57:00 -05:00
bool *should_close;
2025-01-03 20:58:02 -05:00
Input *input;
};
2025-01-02 20:57:00 -05:00
2025-01-03 21:07:44 -05:00
void gs_handle_command(GameState *gs, const char *command);
2025-01-02 20:57:00 -05:00
#endif