IgnoreKudzuComponent.cs 291 B

1234567891011
  1. using Robust.Shared.GameStates;
  2. namespace Content.Shared.Movement.Components;
  3. /// <summary>
  4. /// Special component to allow an entity to navigate kudzu without slowdown.
  5. /// </summary>
  6. [RegisterComponent, NetworkedComponent]
  7. public sealed partial class IgnoreKudzuComponent : Component
  8. {
  9. }