Esempio n. 1
0
 public static void registerEventAction(CustomEventBase eventAction)
 {
     switch (eventAction.getName())
     {
     //TODO Mapping of pilot/upgrade names and event action classes needed!!!!
     case "Wedge Antilles":
         DelegatesHandler.onBeforeAttack += eventAction.doEventAction;
         break;
     }
 }
Esempio n. 2
0
 public void addEventAction(CustomEventBase eventAction)
 {
     this.eventActions.Add(eventAction);
 }