11 lines
318 B
C#
11 lines
318 B
C#
|
|
using Robust.Shared.GameStates;
|
||
|
|
|
||
|
|
namespace Content.Shared.Trigger.Components;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Component used for tracking active timers triggers.
|
||
|
|
/// Used internally for performance reasons.
|
||
|
|
/// </summary>
|
||
|
|
[RegisterComponent, NetworkedComponent]
|
||
|
|
public sealed partial class ActiveTimerTriggerComponent : Component;
|