Files
tbd-station-14/Content.Server/Destructible/Thresholds/ThresholdActs.cs
2022-05-13 17:59:03 +10:00

14 lines
250 B
C#

using Robust.Shared.Serialization;
namespace Content.Server.Destructible.Thresholds
{
[Flags, FlagsFor(typeof(ActsFlags))]
[Serializable]
public enum ThresholdActs
{
None = 0,
Breakage,
Destruction
}
}