Files
OldThink/Content.Shared/Alert/AlertCategory.cs

23 lines
396 B
C#
Raw Permalink Normal View History

2022-01-05 00:19:23 -08:00
namespace Content.Shared.Alert;
/// <summary>
/// Every category of alert. Corresponds to category field in alert prototypes defined in YML
/// </summary>
public enum AlertCategory
{
Pressure,
Temperature,
Breathing,
Buckled,
Health,
Mood, //WD-edit
2024-02-20 14:28:01 +03:00
Arousal, //AMOUR-edit
2022-07-25 14:42:25 +10:00
Internals,
2022-07-06 18:06:12 +10:00
Stamina,
2022-01-05 00:19:23 -08:00
Piloting,
Hunger,
Thirst,
Toxins,
Battery
}