mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-14 19:29:53 +01:00
10 lines
275 B
C#
10 lines
275 B
C#
namespace Content.Server.Explosion.Components;
|
|
|
|
/// <summary>
|
|
/// Disallows starting the timer by hand, must be stuck or triggered by a system using <c>StartTimer</c>.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class AutomatedTimerComponent : Component
|
|
{
|
|
}
|