public bool IsColliding(Entity entity) { if (entity == null) { return(false); } return(CollisionComponent.Intersects(entity.CollisionComponent)); }