2015-01-26 00:38:58 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace TrueCraft.API.World
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Used to decorate chunks with "decorations" such as trees, flowers, ores, etc.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IChunkDecorator
|
|
|
|
|
{
|
2015-04-26 18:08:56 -06:00
|
|
|
|
void Decorate(IWorld world, IChunk chunk, IBiomeRepository biomes);
|
2015-01-26 00:38:58 -05:00
|
|
|
|
}
|
|
|
|
|
}
|