mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 22:18:52 +03:00
14 lines
404 B
C#
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; }
|
|
}
|