X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Fscr_map.c;fp=src%2Fscr_map.c;h=f15296d41bd889fd37ae91a001fbae25b57698a2;hb=dd7ce87b0ad2b8a1b4758bcc9354e993b71c8599;hp=0000000000000000000000000000000000000000;hpb=48ee87d8c32791d17fa7a57076df5d6721d6c05c;p=raydungeon diff --git a/src/scr_map.c b/src/scr_map.c new file mode 100644 index 0000000..f15296d --- /dev/null +++ b/src/scr_map.c @@ -0,0 +1,57 @@ +#include "game.h" + +static int map_init(void); +static void map_destroy(void); +static int map_start(void); +static void map_stop(void); +static void map_display(void); +static void map_reshape(int x, int y); +static void map_keyb(int key, int press); +static void map_mouse(int bn, int press, int x, int y); +static void map_motion(int x, int y); + +struct game_screen scr_map = { + "map", + map_init, map_destroy, + map_start, map_stop, + map_display, map_reshape, + map_keyb, map_mouse, map_motion +}; + +static int map_init(void) +{ + return 0; +} + +static void map_destroy(void) +{ +} + +static int map_start(void) +{ + return 0; +} + +static void map_stop(void) +{ +} + +static void map_display(void) +{ +} + +static void map_reshape(int x, int y) +{ +} + +static void map_keyb(int key, int press) +{ +} + +static void map_mouse(int bn, int press, int x, int y) +{ +} + +static void map_motion(int x, int y) +{ +}