2022-07-10 02:28:37 -07:00
|
|
|
|
namespace Content.Server.Explosion.Components;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// This is used for entities that want the more generic 'trigger' behavior after a step trigger occurs.
|
|
|
|
|
|
/// Not done by default, since it's not useful for everything and might cause weird behavior. But it is useful for a lot of stuff like mousetraps.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
|
public sealed partial class TriggerOnStepTriggerComponent : Component
|
2022-07-10 02:28:37 -07:00
|
|
|
|
{
|
|
|
|
|
|
}
|