15 lines
140 B
C
15 lines
140 B
C
#ifndef GAME_H
|
|
#define GAME_H
|
|
|
|
|
|
#include "townengine/game_api.h"
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
void game_tick(void);
|
|
void game_end(void);
|
|
|
|
|
|
#endif
|