Files
tbd-station-14/Content.Shared/Ghost/GhostOnMoveComponent.cs
Kyle Tyo 1d827754c9 Move BrainSystem and necessary components to Shared (#40499)
* yowza

* Update Content.Shared/Body/Systems/BrainSystem.cs

Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com>

* Update Content.Shared/Ghost/GhostOnMoveComponent.cs

Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com>

* Update BrainSystem.cs

* Update Content.Shared/Body/Systems/BrainSystem.cs

* Update Content.Shared/Body/Systems/BrainSystem.cs

* Update Content.Shared/Body/Systems/BrainSystem.cs

---------

Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com>
2025-10-07 13:10:21 +00:00

14 lines
269 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Ghost;
[RegisterComponent, NetworkedComponent]
public sealed partial class GhostOnMoveComponent : Component
{
[DataField]
public bool CanReturn = true;
[DataField]
public bool MustBeDead;
}