mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-15 03:31:30 +01:00
12 lines
217 B
C#
12 lines
217 B
C#
namespace Content.Shared.Database;
|
|
|
|
// DO NOT CHANGE THE NUMERIC VALUES OF THESE
|
|
[Serializable]
|
|
public enum LogImpact : sbyte
|
|
{
|
|
Low = -1,
|
|
Medium = 0,
|
|
High = 1,
|
|
Extreme = 2 // Nar'Sie just dropped
|
|
}
|