aboutsummaryrefslogtreecommitdiffstats
path: root/include/ui_action.hpp
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2016-04-23 21:55:31 -0400
committerdrumsetmonkey <abelleisle@roadrunner.com>2016-04-23 21:55:31 -0400
commitdebb080a17eba2b2957e99ba7f1ce0fa0c4d2e4e (patch)
tree621bcf54c0f97b202e21bb4f21f5107f852cba63 /include/ui_action.hpp
parent6e51f9723635de3defce30517fa1043f26e27ee9 (diff)
parente04fae7b72b424e5019429a071ad2de9edf4df1f (diff)
Fixed some bugs
Diffstat (limited to 'include/ui_action.hpp')
-rw-r--r--include/ui_action.hpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/include/ui_action.hpp b/include/ui_action.hpp
new file mode 100644
index 0000000..a275ab3
--- /dev/null
+++ b/include/ui_action.hpp
@@ -0,0 +1,21 @@
+#ifndef ACTION_H_
+#define ACTION_H_
+
+#include <common.hpp>
+#include <ui.hpp>
+
+namespace ui {
+ namespace action {
+ extern bool make;
+
+ // enables the action ui
+ void enable(void);
+ // disables the action ui
+ void disable(void);
+
+ // draws the action ui
+ void draw(vec2 loc);
+ }
+}
+
+#endif // ACTION_H_