summaryrefslogtreecommitdiff
path: root/demo/include/agbx-demo.h
diff options
context:
space:
mode:
Diffstat (limited to 'demo/include/agbx-demo.h')
-rw-r--r--demo/include/agbx-demo.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/demo/include/agbx-demo.h b/demo/include/agbx-demo.h
deleted file mode 100644
index 6b354c6..0000000
--- a/demo/include/agbx-demo.h
+++ /dev/null
@@ -1,34 +0,0 @@
-#if !defined(axd_hdr)
-#define axd_hdr
-
-#include <ax/bs.h>
-
-typedef struct {
- ax_i8 x;
- ax_i8 y;
-} axd_pos;
-
-typedef struct {
- ax_i8 col;
- axd_pos pos;
- ax_i8 prevcol;
- axd_pos prevpos;
- ax_i02 vaddr;
-} axd_dat;
-
-typedef struct {
- bool done;
- bool err;
- bool drw;
- bool mv;
-} axd_upd;
-
-axd_upd axd_chkkeys( axd_dat * dat);
-void axd_chgcol( axd_dat * dat, ax_i8 dir);
-void axd_drw( axd_dat * dat);
-void axd_initdat( axd_dat * dat);
-void axd_initgfx( void);
-bool axd_loop( axd_dat * dat);
-void axd_setcolbdr(ax_i02 vaddr,ax_i01 col);
-
-#endif