15 lines
395 B
C#
15 lines
395 B
C#
using Content.Shared.Damage.Systems;
|
|
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Damage.Components;
|
|
|
|
[RegisterComponent, NetworkedComponent, Access(typeof(SharedGodmodeSystem))]
|
|
public sealed class GodmodeComponent : Component
|
|
{
|
|
[DataField("wasMovedByPressure")]
|
|
public bool WasMovedByPressure;
|
|
|
|
[DataField("oldDamage")]
|
|
public DamageSpecifier? OldDamage = null;
|
|
}
|