16 lines
296 B
C#
16 lines
296 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
|
|
} |