jtmm2/include/main.h

11 lines
368 B
C
Raw Normal View History

2020-09-11 18:07:53 +02:00
#include "player.h"
#include "level.h"
#include "camera.h"
#include "input.h"
2020-09-11 18:07:53 +02:00
int play_level(uint level_id);
/* callback used for UPS control */
int callback(volatile void *arg);
void step_event(Player *player, const Level *level, Camera *camera, Input *input, uint step);
void draw_event(Player *player, const Level *level, Camera *camera, Input *input, uint step);