6
2026-01-18 12:53:36 +03: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
}
}