diff options
Diffstat (limited to 'src/graphics_cs.h')
-rw-r--r-- | src/graphics_cs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/graphics_cs.h b/src/graphics_cs.h index 31ee5f1..a16f03f 100644 --- a/src/graphics_cs.h +++ b/src/graphics_cs.h @@ -2,6 +2,7 @@ #define _HACKVR_GRAPHICS_CS_H_ #include "math.h" +#include <idc.h> //these are just the functions that all backends need to implement to work with hackvr. //the list of functions are subject to change. @@ -21,7 +22,7 @@ void set_color_blue(); void clear_backbuffer(); void keypress_handler(unsigned char sym,int x,int y); int graphics_init(); -int graphics_event_handler(); +void graphics_event_handler(struct shit *me,char *line); void set_clipping_rectangle(int x,int y,int width,int height); void red_and_blue_magic(); void draw_mode_and(); |