mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-02-15 00:34:44 +01:00
20 lines
506 B
C#
20 lines
506 B
C#
using Robust.Client;
|
|
|
|
namespace Content.Replay;
|
|
|
|
internal static class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
ContentStart.StartLibrary(args, new GameControllerOptions()
|
|
{
|
|
Sandboxing = true,
|
|
ContentModulePrefix = "Content.",
|
|
ContentBuildDirectory = "Content.Replay",
|
|
DefaultWindowTitle = "SS14 Replay",
|
|
UserDataDirectoryName = "Space Station 14",
|
|
ConfigFileName = "replay.toml"
|
|
});
|
|
}
|
|
}
|