123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #ifndef AREA_BUSINESS_MOTIONLESS_PERSION
- #define AREA_BUSINESS_MOTIONLESS_PERSION
- #include"area_business.h"
- struct config_file;
- class area_business_motionless_persion : public area_business
- {
-
-
-
-
-
-
-
-
-
-
- private:
- static int _acc_0count_limit;
- static int _acc_seconds_limit;
- public:
- static void init(config_file& config);
- void on_load_his(const std::shared_ptr<area_hover>&a,const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data>&ptr);
- 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
|