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/IChunkDecorator.cs
2017-11-08 23:48:19 -08:00

17 lines
463 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using TrueCraft.API.Logic;
namespace TrueCraft.API.World
{
/// <summary>
/// Used to decorate chunks with "decorations" such as trees, flowers, ores, etc.
/// </summary>
public interface IChunkDecorator
{
void Decorate(IWorldSeed world, ISpatialBlockInformationProvider chunk, IBiomeRepository biomes, IBlockRepository blockRepository);
}
}