LethalCompany/Lethal Company/ExportedProject/Assets/Scripts/Assembly-CSharp/DunGen/Adapters/CullingAdapter.cs
2023-12-22 18:30:10 -05:00

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);
}
}
}