Files
tbd-station-14/Content.Shared/Damage/DamageFlag.cs
2021-06-09 22:19:39 +02:00

15 lines
241 B
C#

#nullable enable
using System;
using Robust.Shared.Serialization;
namespace Content.Shared.Damage
{
[Flags]
[Serializable, NetSerializable]
public enum DamageFlag
{
None = 0,
Invulnerable = 1 << 0
}
}