public bool Contains (Pos pos) => pos.X >= 0 && pos.Y >= 0 && pos.X < Width && pos.Y < Height;
public void PlaceApple () => Apple = RandomPosition ();