Files
Monolith/Content.Server/RoundEnd/RoundEndTimeRuleComponent.cs
T
2026-03-28 15:04:33 -04:00

14 lines
313 B
C#

using System;
namespace Content.Server.RoundEnd;
/// <summary>
/// If a gamerule with this component is present, override the roundend time to the time set in it.
/// </summary>
[RegisterComponent]
public sealed partial class RoundEndTimeRuleComponent : Component
{
[DataField]
public TimeSpan EndAt;
}