X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fcommon%2Fmap.h;fp=src%2Fcommon%2Fmap.h;h=0000000000000000000000000000000000000000;hb=a50806df8116a81729220bd79870639b18da9d8c;hp=2a37793979d85fbba6c91ad6640b06269eb6f890;hpb=3a308dfb8b0ede5ab0a23d867cdf33394825538e;p=plomrogue diff --git a/src/common/map.h b/src/common/map.h deleted file mode 100644 index 2a37793..0000000 --- a/src/common/map.h +++ /dev/null @@ -1,25 +0,0 @@ -/* src/common/map.h - * - * This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3 - * or any later version. For details on its copyright, license, and warranties, - * see the file NOTICE in the root directory of the PlomRogue source package. - * - * Game map. - */ - -#ifndef MAP_H -#define MAP_H - -#include /* uint16_t */ - - - -struct Map -{ - char * cells; /* sequence of bytes encoding map cells */ - uint16_t length; /* map's edge length, i.e. both height and width */ -}; - - - -#endif