12345678910111213141516171819202122232425262728293031 |
- #ifndef MODULE_AREA_ENTRY_FORBID_H
- #define MODULE_AREA_ENTRY_FORBID_H
- #include "module_singleton_base.h"
- #include "card.h"
- class module_area_entry_forbid:public singleton_base<module_area_entry_forbid>
- {
- private:
- friend class singleton_base<module_area_entry_forbid>;
- module_area_entry_forbid()
- {
- }
- public:
- void on_enter(std::shared_ptr<card_location_base> card_ptr, int index);
- void on_hover(std::shared_ptr<card_location_base> card_ptr, int index);
- void on_leave(std::shared_ptr<card_location_base> card_ptr, int index);
- };
- #endif
|