Exemple #1
0
 public void ActivateSystemsOnShipClient(GenericShip ship)
 {
     ship.CallOnSystemsPhaseActivation(Next);
 }
Exemple #2
0
        public static void DoSystemActivation(int shipId)
        {
            GenericShip ship = Roster.GetShipById("ShipId:" + shipId);

            ship.CallOnSystemsPhaseActivation((Phases.CurrentSubPhase as SystemsSubPhase).Next);
        }