Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Enums/QuestStatusEnum.cs
T
2025-03-07 13:16:43 +00:00

16 lines
289 B
C#

namespace SPTarkov.Server.Core.Models.Enums;
public enum QuestStatusEnum
{
Locked = 0,
AvailableForStart = 1,
Started = 2,
AvailableForFinish = 3,
Success = 4,
Fail = 5,
FailRestartable = 6,
MarkedAsFailed = 7,
Expired = 8,
AvailableAfter = 9
}