summaryrefslogtreecommitdiffstats
path: root/src/tileset.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tileset.h')
-rw-r--r--src/tileset.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/tileset.h b/src/tileset.h
new file mode 100644
index 0000000..2fd384a
--- /dev/null
+++ b/src/tileset.h
@@ -0,0 +1,12 @@
+#ifndef TILESET_H
+#define TILESET_H
+
+struct tileset {
+ int firstgid;
+ int tilewidth;
+ int tileheight;
+ SDL_Surface *image;
+ struct tileset *next;
+};
+
+#endif