LethalCompany/Lethal Company/ExportedProject/Assets/Scripts/Assembly-CSharp/DunGen/DungeonGeneratorPostProcessStep.cs

21 lines
424 B
C#
Raw Normal View History

2023-12-22 22:51:17 +00:00
using System;
namespace DunGen
{
public struct DungeonGeneratorPostProcessStep
{
public Action<DungeonGenerator> PostProcessCallback;
public PostProcessPhase Phase;
public int Priority;
public DungeonGeneratorPostProcessStep(Action<DungeonGenerator> postProcessCallback, int priority, PostProcessPhase phase)
{
PostProcessCallback = postProcessCallback;
Priority = priority;
Phase = phase;
}
}
}