* 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
319 B
C#
11 lines
319 B
C#
namespace Content.Server.GameTicking.Rules.Components;
|
|
|
|
/// <summary>
|
|
/// Added to game rules before <see cref="GameRuleEndedEvent"/>.
|
|
/// Mutually exclusive with <seealso cref="ActiveGameRuleComponent"/>.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class EndedGameRuleComponent : Component
|
|
{
|
|
}
|