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

15 lines
201 B
C#
Raw Normal View History

2023-12-22 22:51:17 +00:00
namespace DunGen
{
public enum GenerationStatus
{
NotStarted = 0,
PreProcessing = 1,
TileInjection = 2,
MainPath = 3,
Branching = 4,
PostProcessing = 5,
Complete = 6,
Failed = 7
}
}