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