Ejemplo n.º 1
0
 /* Parameters:
  * e: event to remove
  *
  * Description:
  * removes event from the Events list
  */
 public static void CancelEvent(IUnityEvent e)
 {
     Events.Remove(e);
 }
Ejemplo n.º 2
0
 /* Parameters:
  * e: new event to add
  *
  * Description:
  * Adds new event to new events list
  */
 public static void AddEvent(IUnityEvent e)
 {
     newEvents.Add(e);
 }