axmol/extensions/libeditor/WidgetCallBackHandlerProtoc...

10 lines
567 B
C++
Raw Normal View History

2020-10-19 23:21:40 +08:00
#include "libeditor/WidgetCallBackHandlerProtocol.h"
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
}