summaryrefslogtreecommitdiffstats
path: root/src/map.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/map.h')
-rw-r--r--src/map.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/map.h b/src/map.h
deleted file mode 100644
index 925bdd2..0000000
--- a/src/map.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef MAP_H
-#define MAP_H
-
-#include <SDL_stdinc.h>
-#include "tileset.h"
-#include "layer.h"
-
-struct map {
- int width;
- int height;
- int tilewidth;
- int tileheight;
- struct tileset *tilesets;
- struct layer *layers;
- Uint8 *collision;
-};
-
-#endif