* Add invulnerable damage flag and commands * Add serialization for damage flags * Add godmode command
14 lines
247 B
C#
14 lines
247 B
C#
using System;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.GameObjects.Components.Damage
|
|
{
|
|
[Flags]
|
|
[Serializable, NetSerializable]
|
|
public enum DamageFlag
|
|
{
|
|
None = 0,
|
|
Invulnerable = 1 << 0
|
|
}
|
|
}
|