15 lines
152 B
C
15 lines
152 B
C
|
#pragma once
|
||
|
|
||
|
void
|
||
|
game_startup(void);
|
||
|
|
||
|
void
|
||
|
game_shutdown(void);
|
||
|
|
||
|
void
|
||
|
game_update(float dt, input_t input, bool* out_quit);
|
||
|
|
||
|
void
|
||
|
game_render(void);
|
||
|
|