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
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
namespace cocostudio
|
|
|
|
{
|
|
|
|
WidgetCallBackHandlerProtocol::~WidgetCallBackHandlerProtocol() {}
|
2021-12-28 21:00:45 +08:00
|
|
|
cocos2d::ui::Widget::ccWidgetTouchCallback WidgetCallBackHandlerProtocol::onLocateTouchCallback(const std::string&)
|
2021-12-25 10:04:45 +08:00
|
|
|
{
|
|
|
|
return nullptr;
|
2020-10-19 23:21:40 +08:00
|
|
|
}
|
2021-12-28 21:00:45 +08:00
|
|
|
cocos2d::ui::Widget::ccWidgetClickCallback WidgetCallBackHandlerProtocol::onLocateClickCallback(const std::string&)
|
2021-12-25 10:04:45 +08:00
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
2021-12-28 21:00:45 +08:00
|
|
|
cocos2d::ui::Widget::ccWidgetEventCallback WidgetCallBackHandlerProtocol::onLocateEventCallback(const std::string&)
|
2021-12-25 10:04:45 +08:00
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
} // namespace cocostudio
|