aboutsummaryrefslogtreecommitdiff
path: root/fns.h
diff options
context:
space:
mode:
Diffstat (limited to 'fns.h')
-rw-r--r--fns.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/fns.h b/fns.h
index 38aa481..c8f8fde 100644
--- a/fns.h
+++ b/fns.h
@@ -36,6 +36,22 @@ Menulist *newmenulist(int, char*);
void delmenulist(Menulist*);
/*
+ * sprite
+ */
+Sprite *newsprite(Image*, Point, Rectangle, int, ulong);
+Sprite *readsprite(char*, Point, Rectangle, int, ulong);
+Sprite *readpngsprite(char*, Point, Rectangle, int, ulong);
+void delsprite(Sprite*);
+
+/*
+ * vfx
+ */
+Vfx *newvfx(Sprite*, Point, int);
+void delvfx(Vfx*);
+void addvfx(Vfx*, Vfx*);
+void initvfxq(Vfx*);
+
+/*
* parse
*/
Cmdbuf *parsecmd(char*, int);