Files
tbd-station-14/Content.Server/Ghost/Components/GhostOnMoveComponent.cs

12 lines
299 B
C#

namespace Content.Server.Ghost.Components
{
[RegisterComponent]
public sealed partial class GhostOnMoveComponent : Component
{
[DataField("canReturn")] public bool CanReturn { get; set; } = true;
[DataField("mustBeDead")]
public bool MustBeDead = false;
}
}