コード例 #1
0
ファイル: Cable.cs プロジェクト: palich12/Covenant
 protected override void SetShipElement(ShipMapCell cell, ShipElement element)
 {
     if (cell == null)
     {
         return;
     }
     cell.StandCable = (Cable)element;
 }
コード例 #2
0
ファイル: ShipElement.cs プロジェクト: palich12/Covenant
 protected abstract void SetShipElement(ShipMapCell cell, ShipElement element);
コード例 #3
0
ファイル: DeckObject.cs プロジェクト: palich12/Covenant
 protected override void SetShipElement(ShipMapCell cell, ShipElement element)
 {
     cell.StandObject = (DeckObject)element;
 }
コード例 #4
0
 protected override void SetShipElement(ShipMapCell cell, ShipElement element)
 {
     cell.StandAirPipe = (AirPipe)element;
 }
コード例 #5
0
ファイル: FloorTile.cs プロジェクト: palich12/Covenant
 protected override void SetShipElement(ShipMapCell cell, ShipElement element)
 {
     cell.Deck = (FloorTile)element;
 }