X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fcommon%2Fmap.h;fp=src%2Fcommon%2Fmap.h;h=0000000000000000000000000000000000000000;hb=f9c94db47aa883149aa762fa128ac1ff1b3f92e1;hp=cac29dc8f111686be4eb3e4ed699c8c2e7422eb0;hpb=e03020342a74aef143b1ec38c18966dac64181b5;p=plomrogue diff --git a/src/common/map.h b/src/common/map.h deleted file mode 100644 index cac29dc..0000000 --- a/src/common/map.h +++ /dev/null @@ -1,21 +0,0 @@ -/* src/common/map.h - * - * Struct for the game map. - */ - -#ifndef MAP_H -#define MAP_H - -#include "yx_uint16.h" /* yx_uint16 struct */ - - - -struct Map -{ - struct yx_uint16 size; /* map's height/width in number of cells */ - char * cells; /* sequence of bytes encoding map cells */ -}; - - - -#endif