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