15 lines
241 B
C
15 lines
241 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void load();
|
|
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
|