This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
TrueCraft/TrueCraft.API/World/IChunkProvider.cs
2014-12-27 12:34:55 -07:00

12 lines
294 B
C#

using System;
namespace TrueCraft.API.World
{
/// <summary>
/// Provides new chunks to worlds. Generally speaking this is a terrain generator.
/// </summary>
public interface IChunkProvider
{
IChunk GenerateChunk(IWorld world, Coordinates2D coordinates);
}
}