Example #1
0
void EventDispatcher::PerformEvent(int32 eventType, BaseObject *eventParam)
{
    PerformEventWithData(eventType, eventParam, NULL);
}
void EventDispatcher::PerformEventWithData(int32 eventType, void *callerData)
{
	PerformEventWithData(eventType, this, callerData);
}
Example #3
0
void EventDispatcher::PerformEvent(int32 eventType)
{
	PerformEventWithData(eventType, this, NULL);
}