2020-05-03 11:25:39 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using Robust.Server.Interfaces.Player;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.GameTicking
|
2018-11-22 10:37:58 +01:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// A round-start setup preset, such as which antagonists to spawn.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public abstract class GamePreset
|
|
|
|
|
|
{
|
2020-05-03 11:25:39 +02:00
|
|
|
|
public abstract bool Start(IReadOnlyList<IPlayerSession> players);
|
2020-04-08 06:07:54 -05:00
|
|
|
|
public virtual string ModeTitle => "Sandbox";
|
2019-10-18 14:28:39 +02:00
|
|
|
|
public virtual string Description => "Secret!";
|
2018-11-22 10:37:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|