Interface ITerrainGenerator
Represents a terrain generator that can produce chunk data for given chunk coordinates.
Namespace: TerraProc.Core.Generation
Assembly: TerraProc.Core.dll
Syntax
public interface ITerrainGenerator
Methods
| Edit this page View SourceGenerate(ChunkCoords)
Generates terrain data for the specified chunk coordinates, synchronously.
Declaration
ChunkData Generate(ChunkCoords coords)
Parameters
| Type | Name | Description |
|---|---|---|
| ChunkCoords | coords | The coordinates of the chunk to generate. |
Returns
| Type | Description |
|---|---|
| ChunkData | The generated chunk data instance. |