X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Fscr%2Ftilemaze.h;fp=src%2Fscr%2Ftilemaze.h;h=a06acd8c22dc4fe80b1c36eab022c03cf2522c8c;hb=ba648ddfc62fc6d3f47294aa8bfc10ea6ca3f479;hp=0000000000000000000000000000000000000000;hpb=3398fc6c4188104048f99b650a6cb90beda9b6ed;p=dosdemo diff --git a/src/scr/tilemaze.h b/src/scr/tilemaze.h new file mode 100644 index 0000000..a06acd8 --- /dev/null +++ b/src/scr/tilemaze.h @@ -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_ */