1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // 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<void()> &onRewardGot, const function<void()> &onAdCanceled){
- onRewardGot();
- };
-
-
- };
- NS_AD_END
- #endif /* AdUtilsVideo_h */
|