16 lines
163 B
C
16 lines
163 B
C
|
#ifndef GAME_H
|
||
|
#define GAME_H
|
||
|
|
||
|
|
||
|
#include "../game_api.h"
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
|
||
|
void game_step(int64_t delta);
|
||
|
void game_tick(void);
|
||
|
void game_end(void);
|
||
|
|
||
|
|
||
|
#endif
|