2022-07-10 02:28:37 -07:00
|
|
|
|
using Robust.Shared.GameStates;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.StepTrigger.Components;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// This is used for cancelling step trigger events if the user is wearing shoes, such as for glass shards.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[RegisterComponent, NetworkedComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
|
public sealed partial class ShoesRequiredStepTriggerComponent : Component
|
2022-07-10 02:28:37 -07:00
|
|
|
|
{
|
|
|
|
|
|
}
|