// // AdUtilsVideo.h // Billiards // // Created by zhuge on 17/10/25. // // #ifndef AdUtilsVideo_h #define AdUtilsVideo_h #include "AdHeader.h" NS_AD_BEGIN class AdUtilsVideo : public Ref{ public: AdUtilsVideo(); ~AdUtilsVideo(); CREATE_FUNC_NO_INIT(AdUtilsVideo); public: bool hasVideo(string pageName){ return true; }; void showVideo(string pageName, const function &onRewardGot, const function &onAdCanceled){ onRewardGot(); }; }; NS_AD_END #endif /* AdUtilsVideo_h */