16 lines
284 B
C

#pragma once
#ifdef __cplusplus
extern "C" {
#endif
void load(const char * source_path);
void draw_hud();
void draw();
void update(float lx, float ly, float rx, float ry, float tl, float tr,
int up, int down, int left, int right);
#ifdef __cplusplus
}
#endif