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-03 21:24:56 -05:00
|
|
|
#include "room.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-03 21:24:56 -05:00
|
|
|
Room *rooms;
|
|
|
|
int rooms_count;
|
2025-01-03 20:58:02 -05:00
|
|
|
};
|
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
|