public bool CollideWith(IGameObject otherGameObject)
 {
     return(Items.Any(i => otherGameObject.CollideWith(i)));
 }