mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-04-21 06:48:11 -04:00
This commit imports the C# engine code and game files, excluding C++ source code. [Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
13 lines
165 B
C#
13 lines
165 B
C#
namespace Sandbox;
|
|
|
|
public static class Launcher
|
|
{
|
|
public static int Main()
|
|
{
|
|
var appSystem = new StandaloneAppSystem();
|
|
appSystem.Run();
|
|
|
|
return 0;
|
|
}
|
|
}
|