diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-10-20 08:44:58 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-10-20 08:44:58 -0400 |
commit | cb408a63a0f03ccb0b0ce7c338527a3b4964aff9 (patch) | |
tree | c373f7f74d0c1b5c834dccf47b7f3b343a0b870b /include/ui_action.hpp.bak | |
parent | 4f838cdf582f0ace6d7de8cb376dfce7100fbea3 (diff) |
removed all old entity stuff
Diffstat (limited to 'include/ui_action.hpp.bak')
-rw-r--r-- | include/ui_action.hpp.bak | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/include/ui_action.hpp.bak b/include/ui_action.hpp.bak new file mode 100644 index 0000000..a275ab3 --- /dev/null +++ b/include/ui_action.hpp.bak @@ -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_ |