Ejemplo n.º 1
0
 public void EquipComponent(iComponent pw)
 {
     if (VerifyComponent(pw))
     {
         Weapon = (iWeaponComponent)pw;
     }
     else
     {
         /// Do nothing
     }
 }
Ejemplo n.º 2
0
 public void RemoveComponent()
 {
     Weapon = null;
 }