summaryrefslogtreecommitdiffstats
path: root/src/map.h
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-02-16 21:35:48 (EST)
committer P. J. McDermott <pjm@nac.net>2013-02-16 21:35:48 (EST)
commit1e4407da677dd7a192c817de16583bb7199ceeb0 (patch)
treeb97d3e7e746ef91ffebb86cb654e6fc8499241e5 /src/map.h
parent63349a6230304a7f1aa34a4c96e4873f86bf39c5 (diff)
downloadoverworld-rpg-1e4407da677dd7a192c817de16583bb7199ceeb0.zip
overworld-rpg-1e4407da677dd7a192c817de16583bb7199ceeb0.tar.gz
overworld-rpg-1e4407da677dd7a192c817de16583bb7199ceeb0.tar.bz2
TMX parser rewrite number one.
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