Exemplo n.º 1
0
 public void Unsubscribe(CombinationEventHandler handler)
 {
     if (handler != null)
     {
         CombinationEvent -= handler;
     }
 }
Exemplo n.º 2
0
 public void Subscribe(CombinationEventHandler handler)
 {
     //Debug.Log("Subscribed to "+ name);
     if (handler != null)
     {
         CombinationEvent += handler;
     }
 }