17 lines
463 B
C#
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);
|
|
}
|
|
}
|