public void SubscribeToEvent(string eventType, AtomicEventDelegate function) { EventCore.SubscribeToEvent(this, null, eventType, function); }
public void SendEvent(string eventType, Dictionary <string, object> eventData = null) { EventCore.SendEvent(this, eventType); }
public void SubscribeToEvent(AObject sender, string eventType, AtomicEventDelegate function) { EventCore.SubscribeToEvent(this, sender, eventType, function); }
static void CSBeginSendEvent(uint senderRefId, uint eventType, IntPtr eventData) { EventCore.BeginSendEvent(senderRefId, eventType, eventData); }