17 lines
357 B
C#
17 lines
357 B
C#
namespace DunGen.Adapters
|
|
{
|
|
public abstract class CullingAdapter : BaseAdapter
|
|
{
|
|
public CullingAdapter()
|
|
{
|
|
Priority = -1;
|
|
}
|
|
|
|
protected abstract void PrepareForCulling(DungeonGenerator generator, Dungeon dungeon);
|
|
|
|
protected override void Run(DungeonGenerator generator)
|
|
{
|
|
PrepareForCulling(generator, generator.CurrentDungeon);
|
|
}
|
|
}
|
|
}
|