1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 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_