mirror of
https://github.com/space-wizards/RobustToolboxTemplate.git
synced 2026-02-10 16:24:49 -05:00
Update template to latest RobustToolbox version.
- Converts template to use file-scoped namespaces. - Add manifest.yml and comments for it.
This commit is contained in:
parent
b417f4355e
commit
729c2a6206
18 changed files with 197 additions and 272 deletions
|
|
@ -1,21 +1,20 @@
|
|||
using Robust.Server;
|
||||
|
||||
namespace Content.Server
|
||||
namespace Content.Server;
|
||||
|
||||
internal static class Program
|
||||
{
|
||||
internal static class Program
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
ContentStart.Start(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,
|
||||
});
|
||||
*/
|
||||
}
|
||||
/*
|
||||
// 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,
|
||||
});
|
||||
*/
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue