Files
tbd-station-14/Content.Server/GameTicking/GamePreset.cs
2019-10-18 14:28:39 +02:00

12 lines
297 B
C#

namespace Content.Server.GameTicking
{
/// <summary>
/// A round-start setup preset, such as which antagonists to spawn.
/// </summary>
public abstract class GamePreset
{
public abstract void Start();
public virtual string Description => "Secret!";
}
}