123456789101112131415161718192021222324 |
- #ifndef AREA_BUSINESS_CAR_ATTENDANCE_H
- #define AREA_BUSINESS_CAR_ATTENDANCE_H
- #include"area_business.h"
- struct area_business_car_attendance:area_business
- {
- area_business_car_attendance();
- int area_business_type()
- {
- return 6;
- }
-
- void on_enter(const std::shared_ptr<area_hover>&a,const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data>&ptr);
- void on_hover(const std::shared_ptr<area_hover>&a,const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data> ptr);
-
- void on_leave(const std::shared_ptr<area_hover>&a,const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data> ptr);
- };
- #endif
|