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

14 lines
201 B
C#

namespace DunGen
{
public enum GenerationStatus
{
NotStarted = 0,
PreProcessing = 1,
TileInjection = 2,
MainPath = 3,
Branching = 4,
PostProcessing = 5,
Complete = 6,
Failed = 7
}
}