16 lines
237 B
C
16 lines
237 B
C
#ifndef GAME_H
|
|
#define GAME_H
|
|
|
|
#include "input.h"
|
|
#include "arena.h"
|
|
|
|
typedef struct {
|
|
input_t game_input;
|
|
arena_t main_arena;
|
|
int32_t window_h;
|
|
int32_t window_w;
|
|
int64_t frame;
|
|
double dt;
|
|
} game_state_t;
|
|
|
|
#endif
|