home · contact · privacy
Replace old with new client, drop redo system needed to build old one.
[plomrogue] / src / common / map.h
diff --git a/src/common/map.h b/src/common/map.h
deleted file mode 100644 (file)
index 2a37793..0000000
+++ /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 <stdint.h> /* 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