1234567891011121314151617 |
- //
- // IAPTestCardViewDelegate.cpp
- // demo
- //
- // Created by Red_mini on 2024/10/25.
- //
- #include "IAPTestCardViewDelegate.hpp"
- #include "cocos2d.h"
- IAPTestCardViewDelegate::IAPTestCardViewDelegate(){
-
- }
- void IAPTestCardViewDelegate::onCardChanged(int currentPageIndex){
- log("页面切换到第%d页",currentPageIndex + 1);
- }
|