Esempio n. 1
0
 public FixedMount(int size, string component, iFixedComponent c)
 {
     Military  = false;
     MountType = "Fixed";
     Component = component;
     Size      = size;
     Fixed     = c;
 }
Esempio n. 2
0
 public void EquipComponent(iComponent pw)
 {
     if (VerifyComponent(pw))
     {
         Fixed = (iFixedComponent)pw;
     }
     else
     {
         /// Do nothing
     }
 }