Files
tbd-station-14/Content.Server/Destructible/Thresholds/ThresholdActs.cs
2021-06-09 22:19:39 +02:00

15 lines
264 B
C#

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