Files

14 lines
250 B
C#
Raw Permalink Normal View History

2022-05-13 00:59:03 -07:00
using Robust.Shared.Serialization;
2021-06-09 22:19:39 +02:00
namespace Content.Server.Destructible.Thresholds
{
[Flags, FlagsFor(typeof(ActsFlags))]
[Serializable]
public enum ThresholdActs
{
None = 0,
Breakage,
Destruction
}
}