public void EquipComponent(iComponent pw)
 {
     if (VerifyComponent(pw))
     {
         Optional = (iOptionalComponent)pw;
     }
     else
     {
         /// Do nothing
     }
 }
 public void RemoveComponent()
 {
     Optional = null;
 }