コード例 #1
0
ファイル: KnownQuestTarget.cs プロジェクト: IgNit3R/ing
 public void OnShipPowerup(HomeportShip ship, IReadOnlyCollection <HomeportShip> consumed, bool success)
 {
     foreach (var c in Counters)
     {
         if (c is ShipPowerupCounter pc)
         {
             pc.OnShipPowerup(StatePersist, ship, consumed, success);
         }
     }
     UpdateProgress();
 }
コード例 #2
0
ファイル: EquipmentCatalogVM.cs プロジェクト: lyu0912/ing
 public ShipGroup(HomeportShip ship, int count)
 {
     Ship  = ship;
     Count = count;
 }
コード例 #3
0
 internal HomeportSlot(HomeportShip ship, int index)
 {
     Ship  = ship;
     Index = index;
 }