Replay client (#15001)

This commit is contained in:
Leon Friedrich
2023-06-05 16:44:09 +12:00
committed by GitHub
parent a8eee5878a
commit 2ef95a3225
28 changed files with 1474 additions and 1 deletions

19
Content.Replay/Program.cs Normal file
View File

@@ -0,0 +1,19 @@
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"
});
}
}