diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2016-04-23 21:55:31 -0400 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2016-04-23 21:55:31 -0400 |
commit | debb080a17eba2b2957e99ba7f1ce0fa0c4d2e4e (patch) | |
tree | 621bcf54c0f97b202e21bb4f21f5107f852cba63 /include/ui_action.hpp | |
parent | 6e51f9723635de3defce30517fa1043f26e27ee9 (diff) | |
parent | e04fae7b72b424e5019429a071ad2de9edf4df1f (diff) |
Fixed some bugs
Diffstat (limited to 'include/ui_action.hpp')
-rw-r--r-- | include/ui_action.hpp | 21 |
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_ |