X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;ds=sidebyside;f=main.h;h=e513f9718d47a20803a7219fdf17edc39eb6e171;hb=HEAD;hp=b5e7959ab2d379589859492331a51e85accfe43a;hpb=cccecbe0c0861ecef1cb511378132f9e981056e6;p=dungeon1 diff --git a/main.h b/main.h index b5e7959..e513f97 100644 --- a/main.h +++ b/main.h @@ -5,15 +5,23 @@ #include #define MAPDIR "maps" -#define BLANKCHAR ':' +#define BLANKCHAR ' ' +#define WALLCHARS "#-|.'+" enum { H = 24, W = 80, T = 1, SEEDIST = 4, + MAPH = 24, + MAPW = 80, + BORDER = 1, }; +WINDOW *w_map, *w_mapborder; +WINDOW *w_hud, *w_pos, *w_info, *w_gold; +WINDOW *w_title; + struct map { char *name; char map[24][80];