| 1008 | } |
| 1009 | |
| 1010 | void EventDispatcher::dispatchCustomEvent(std::string_view eventName, void* optionalUserData, bool forced) |
| 1011 | { |
| 1012 | EventCustom ev(eventName); |
| 1013 | ev.setUserData(optionalUserData); |
| 1014 | dispatchEvent(&ev, forced); |
| 1015 | } |
| 1016 | |
| 1017 | bool EventDispatcher::hasEventListener(std::string_view listenerID) const |
| 1018 | { |