summaryrefslogtreecommitdiffstats
path: root/src/resources/tileset.h
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-02-17 05:52:58 (EST)
committer P. J. McDermott <pjm@nac.net>2013-02-17 05:55:20 (EST)
commit3f5ba41ed0364268d5a6d10e4ab559b61393edf0 (patch)
treed0c346d1f7885ed65f6298096c88b9997b6949de /src/resources/tileset.h
parent5a63b4c2710732f73caed6fa9fa08fcf1ca7fd44 (diff)
downloadoverworld-rpg-3f5ba41ed0364268d5a6d10e4ab559b61393edf0.zip
overworld-rpg-3f5ba41ed0364268d5a6d10e4ab559b61393edf0.tar.gz
overworld-rpg-3f5ba41ed0364268d5a6d10e4ab559b61393edf0.tar.bz2
Delete old map-related files.
Diffstat (limited to 'src/resources/tileset.h')
-rw-r--r--src/resources/tileset.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/resources/tileset.h b/src/resources/tileset.h
deleted file mode 100644
index 45de237..0000000
--- a/src/resources/tileset.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef RESOURCE_TILESET_H
-#define RESOURCE_TILESET_H
-
-#include <expat.h>
-#include "resource.h"
-#include "image.h"
-
-struct tileset {
- struct resource res;
- int firstgid;
- char *name;
- int tilewidth;
- int tileheight;
- struct image *image;
- struct tileset *next;
-};
-
-struct tileset *tileset_get(const char *path);
-void XMLCALL xml_tileset_start(void *data, const char *el,
- const char **attr);
-void XMLCALL xml_tileset_end(void *data, const char *el);
-
-#endif