reorganized the source code
[dosdemo] / src / scr / tilemaze.h
diff --git a/src/scr/tilemaze.h b/src/scr/tilemaze.h
new file mode 100644 (file)
index 0000000..a06acd8
--- /dev/null
@@ -0,0 +1,12 @@
+#ifndef TILEMAZE_H_
+#define TILEMAZE_H_
+
+struct tilemaze;
+
+struct tilemaze *load_tilemaze(const char *fname);
+void destroy_tilemaze(struct tilemaze *tmz);
+
+void update_tilemaze(struct tilemaze *tmz);
+void draw_tilemaze(struct tilemaze *tmz);
+
+#endif /* TILEMAZE_H_ */