1234567891011121314151617181920212223242526272829303132333435363738 |
- #include "area.h"
- #include "card_base.h"
- #include "area_business_person_dwell_checker.h"
- void area_business_person_dwell_checker::on_enter(const std::shared_ptr<area_hover>&a,
- const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data>&ptr)
- {
- }
- void area_business_person_dwell_checker::on_hover(const std::shared_ptr<area_hover>&a,
- const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data> ptr)
- {
- }
- void area_business_person_dwell_checker::on_leave(const std::shared_ptr<area_hover>&a,
- const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data> ptr)
- {
- }
|