thrive/01_text_adventure/game.h

14 lines
182 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
#endif