14 lines
139 B
C
14 lines
139 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
|