mirror of
https://github.com/space-wizards/RobustToolboxTemplate.git
synced 2026-02-10 16:24:49 -05:00
- Converts template to use file-scoped namespaces. - Add manifest.yml and comments for it.
20 lines
No EOL
461 B
C#
20 lines
No EOL
461 B
C#
using Robust.Server;
|
|
|
|
namespace Content.Server;
|
|
|
|
internal static class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
ContentStart.Start(args);
|
|
|
|
/*
|
|
// DEVNOTE: If you want to use RobustToolbox as a library, use the method below instead.
|
|
ContentStart.StartLibrary(args, new ServerOptions()
|
|
{
|
|
// DEVNOTE: Your options here.
|
|
Sandboxing = false,
|
|
});
|
|
*/
|
|
}
|
|
} |