Exemplo n.º 1
0
 /**
  * Delete the entity from the world.
  *
  * <p>The entity is considered to be in a final state once invoked; adding or removing components
  * from an entity scheduled for deletion will likely throw exceptions.
  *
  * @param entityId the entity to delete
  */
 public void delete(int entityId) {
   editPool.delete(entityId);
 }