mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-02-15 00:54:51 +01:00
12 lines
299 B
C#
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;
|
|
}
|
|
}
|