コード例 #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;
     }
 }
コード例 #2
0
ファイル: LoadedShip.cs プロジェクト: Pilgrim0819/SW_X-2
 public void addEventAction(CustomEventBase eventAction)
 {
     this.eventActions.Add(eventAction);
 }