Files
crystall-punk-14/Content.Server/GameTicking/Rules/Components/RespawnDeadRuleComponent.cs

10 lines
308 B
C#
Raw Normal View History

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
{
}