16 lines
243 B
C
16 lines
243 B
C
#ifndef _FD_GAME_
|
|
#define _FD_GAME_
|
|
|
|
#include <stdbool.h>
|
|
typedef struct GameState GameState;
|
|
#include "input.h"
|
|
|
|
struct GameState {
|
|
bool *should_close;
|
|
Input *input;
|
|
};
|
|
|
|
void gs_handle_command(GameState *gs, const char *command);
|
|
|
|
#endif
|