|
@@ -13,7 +13,11 @@ struct area_hover;
|
|
|
struct card_location_base;
|
|
|
struct area_business
|
|
|
{
|
|
|
- virtual int area_business_type()=0;
|
|
|
+ int m_business_type=0;
|
|
|
+ int area_business_type()
|
|
|
+ {
|
|
|
+ return m_business_type;
|
|
|
+ }
|
|
|
|
|
|
virtual 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){}
|
|
|
virtual void on_enter(const std::shared_ptr<area_hover>&a,const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data>&ptr){}
|