13 lines
219 B
C#
13 lines
219 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Destructible;
|
|
|
|
[Flags]
|
|
[Serializable, NetSerializable]
|
|
public enum ThresholdActs : byte
|
|
{
|
|
None = 0,
|
|
Breakage = 1 << 0,
|
|
Destruction = 1 << 1,
|
|
}
|