mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
15 lines
329 B
C#
15 lines
329 B
C#
namespace Robust.Client
|
|
{
|
|
public static class ContentStart
|
|
{
|
|
public static void Start(string[] args)
|
|
{
|
|
#if FULL_RELEASE
|
|
throw new System.InvalidOperationException("ContentStart is not available on a full release.");
|
|
#else
|
|
GameController.Start(args, true);
|
|
#endif
|
|
}
|
|
}
|
|
}
|