Files
tbd-station-14/Content.Server/GameTicking/Rules/Configurations/GameRuleConfiguration.cs
2023-04-24 16:21:05 +10:00

14 lines
404 B
C#

namespace Content.Server.GameTicking.Rules.Configurations;
/// <summary>
/// Configures a game rule, providing information like what maps to use or how long to run.
/// </summary>
[ImplicitDataDefinitionForInheritors]
public abstract class GameRuleConfiguration
{
/// <summary>
/// The game rule this configuration is intended for.
/// </summary>
public abstract string Id { get; }
}