16 lines
291 B
C
16 lines
291 B
C
/* include this header in game code to get the usable parts of the engine */
|
|
#ifndef GAME_API_H
|
|
#define GAME_API_H
|
|
|
|
|
|
#include "context.h"
|
|
#include "rendering.h"
|
|
#include "audio.h"
|
|
#include "util.h"
|
|
|
|
/* application provided */
|
|
extern void game_tick(void);
|
|
extern void game_end(void);
|
|
|
|
#endif
|