diff options
Diffstat (limited to 'src/Support.h')
-rw-r--r-- | src/Support.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Support.h b/src/Support.h index d0bbd92..83ea163 100644 --- a/src/Support.h +++ b/src/Support.h @@ -32,11 +32,12 @@ typedef struct Point #define FSClose(fildes) close(fildes) int Random(); -void Microseconds(UnsignedWide *microTickCount); void GetMouse(Point *p); void GetMouseRel(Point *p); -void GetKeys(unsigned long *keys); +void MoveMouse(int xcoord, int ycoord, Point *mouseloc); int Button(void); +bool IsKeyDown(int key); + void loadOgg(char* filename, ALuint buffer, ALuint source); FILE *cfh_fopen(const char *filename, const char *mode); |