Esempio n. 1
0
 public ShipDesignSlot(TechHullSlot hullSlot, TechHullComponent hullComponent, int quantity) : base()
 {
     this.hullSlot      = hullSlot;
     this.hullComponent = hullComponent;
     if (this.hullComponent != null)
     {
         this.hullComponentName = hullComponent.getName();
     }
     this.quantity = quantity;
 }
Esempio n. 2
0
 public void setHullSlot(TechHullSlot hullSlot)
 {
     this.hullSlot = hullSlot;
 }