Files
tbd-station-14/Content.Shared/Movement/Components/IgnoreKudzuComponent.cs
2023-08-09 08:24:41 -07:00

12 lines
283 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Movement.Components;
/// <summary>
/// Special component to allow an entity to navigate kudzu without slowdown.
/// </summary>
[RegisterComponent, NetworkedComponent]
public sealed class IgnoreKudzuComponent : Component
{
}