#ifndef ACTION_H_ #define ACTION_H_ #include #include 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_