2020-10-19 23:21:40 +08:00
|
|
|
|
2020-10-21 10:12:00 +08:00
|
|
|
#include "WidgetCallBackHandlerProtocol.h"
|
2020-10-19 23:21:40 +08:00
|
|
|
|
|
|
|
namespace cocostudio {
|
|
|
|
WidgetCallBackHandlerProtocol::~WidgetCallBackHandlerProtocol(){}
|
2020-10-20 00:34:14 +08:00
|
|
|
cocos2d::ui::Widget::ccWidgetTouchCallback WidgetCallBackHandlerProtocol::onLocateTouchCallback(const std::string&){ return nullptr; }
|
|
|
|
cocos2d::ui::Widget::ccWidgetClickCallback WidgetCallBackHandlerProtocol::onLocateClickCallback(const std::string&){ return nullptr; }
|
|
|
|
cocos2d::ui::Widget::ccWidgetEventCallback WidgetCallBackHandlerProtocol::onLocateEventCallback(const std::string&){ return nullptr; }
|
2020-10-19 23:21:40 +08:00
|
|
|
}
|