* Improve active game rule querying, add generic try round start attempt method, move minPlayers to GameRuleComponent * Nukeops todo and cleanup * Remove Active field * Add EndedGameRuleComponent
11 lines
373 B
C#
11 lines
373 B
C#
namespace Content.Server.GameTicking.Rules.Components;
|
|
|
|
/// <summary>
|
|
/// Added to game rules before <see cref="GameRuleStartedEvent"/> and removed before <see cref="GameRuleEndedEvent"/>.
|
|
/// Mutually exclusive with <seealso cref="EndedGameRuleComponent"/>.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class ActiveGameRuleComponent : Component
|
|
{
|
|
}
|