12345678910111213141516171819202122232425262728293031323334353637 |
- #include "base/CCEventCustom.h"
- #include "base/CCEvent.h"
- NS_CC_BEGIN
- EventCustom::EventCustom(const std::string& eventName)
- : Event(Type::CUSTOM)
- , _userData(nullptr)
- , _eventName(eventName)
- {
- }
- NS_CC_END
|