18 lines
309 B
C#
18 lines
309 B
C#
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,
|
|
Piloting,
|
|
Hunger,
|
|
Thirst,
|
|
Toxins
|
|
}
|