GhostOnMoveComponent.cs 299 B

1234567891011
  1. namespace Content.Server.Ghost.Components
  2. {
  3. [RegisterComponent]
  4. public sealed partial class GhostOnMoveComponent : Component
  5. {
  6. [DataField("canReturn")] public bool CanReturn { get; set; } = true;
  7. [DataField("mustBeDead")]
  8. public bool MustBeDead = false;
  9. }
  10. }