mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-03 10:37:05 +02:00
* Adds ServerOptions, improve GameControllerOptions, fix engine integration tests * Do component auto-registration in engine integration tests by default * Fix integration tests on content, register components ONLY if not contentstarted or options are null * Add integration test for engine integration tests working correctly * Move cvar overrides out of content and into engine.
19 lines
442 B
C#
19 lines
442 B
C#
using Robust.Client;
|
|
using Robust.LoaderApi;
|
|
|
|
[assembly: LoaderEntryPoint(typeof(GameController.LoaderEntryPoint))]
|
|
|
|
namespace Robust.Client
|
|
{
|
|
internal partial class GameController
|
|
{
|
|
internal class LoaderEntryPoint : ILoaderEntryPoint
|
|
{
|
|
public void Main(IMainArgs args)
|
|
{
|
|
Start(args.Args, new GameControllerOptions(), contentStart: false, args);
|
|
}
|
|
}
|
|
}
|
|
}
|