/// <summary>
 /// Removes an entity from the system.
 /// </summary>
 /// <param name="id">The ID of the entity.</param>
 public void RemoveEntity(int id)
 {
     // Remove entity from collision component.
     collisionComponent.RemoveEntity(id);
 }