Allow admins to change round preset.

This commit is contained in:
Pieter-Jan Briers
2019-05-15 15:49:02 +02:00
parent e68a5c8402
commit a903ffb105
6 changed files with 61 additions and 15 deletions

View File

@@ -0,0 +1,10 @@
namespace Content.Server.GameTicking.GamePresets
{
public sealed class PresetSandbox : GamePreset
{
public override void Start()
{
// Nothing yet.
}
}
}