Beispiel #1
0
    public static void TriggerEvent(string eventName, ItemButton itemButton)
    {
        CustomEventWithItemButtonParameter thisEvent = null;

        if (Instance.eventDictionary.TryGetValue(eventName, out thisEvent))
        {
            thisEvent.Invoke(itemButton);
        }
    }