Ejemplo n.º 1
0
    public static void TriggerEvent(string eventName, Vector3 parameter)
    {
        ParameterEvent thisEvent = null;

        if (instance.eventDictionary.TryGetValue(eventName, out thisEvent))
        {
            thisEvent.Invoke(parameter);
        }
    }