/// <summary>
 /// Gets the terrain at the specified location.
 /// </summary>
 /// <returns>The terrain.</returns>
 /// <param name="x">The X coordinate.</param>
 /// <param name="y">The Y coordinate.</param>
 public Terrain GetTerrain(int x, int y)
 => worldManager.GetTerrain(x, y);