/// <summary>
 /// Adds an entity to the system.
 /// </summary>
 /// <param name="entity">The entity to add.</param>
 public void AddEntity(IEntity entity)
 {
     // Add entity to collision component.
     collisionComponent.AddEntity(entity);
 }