/**
  * Returns TRUE if the given entity is already spawned.
  *
  * @param p_entity
  * @return boolean
  */
 public boolean isSpawned(SpriteEntity p_entity) {
   return p_entity.getLinkVertices() != 0 || p_entity.getScrX() + p_entity.getScrY() > 0;
 }