1
0

PullMovingComponent.cs 385 B

1234567891011121314
  1. using Robust.Shared.Map;
  2. namespace Content.Server.Movement.Components;
  3. /// <summary>
  4. /// Added when an entity is being ctrl-click moved when pulled.
  5. /// </summary>
  6. [RegisterComponent]
  7. public sealed partial class PullMovingComponent : Component
  8. {
  9. // Not serialized to indicate THIS CODE SUCKS, fix pullcontroller first
  10. [ViewVariables]
  11. public EntityCoordinates MovingTo;
  12. }