Files
tbd-station-14/Content.Server/GameTicking/Rules/Components/RespawnDeadRuleComponent.cs
2023-08-30 18:06:15 -07:00

10 lines
308 B
C#

namespace Content.Server.GameTicking.Rules.Components;
/// <summary>
/// This is used for gamemodes that automatically respawn players when they're no longer alive.
/// </summary>
[RegisterComponent, Access(typeof(RespawnRuleSystem))]
public sealed partial class RespawnDeadRuleComponent : Component
{
}