mirror of
https://github.com/space-wizards/RobustToolboxTemplate.git
synced 2026-02-10 08:14:49 -05:00
Fix warnings.
This commit is contained in:
parent
5c4960e729
commit
c71a748112
3 changed files with 3 additions and 3 deletions
|
|
@ -9,7 +9,7 @@ using Robust.Shared.Timing;
|
|||
// DEVNOTE: Games that want to be on the hub can change their namespace prefix in the "manifest.yml" file.
|
||||
namespace Content.Client;
|
||||
|
||||
public class EntryPoint : GameClient
|
||||
public sealed class EntryPoint : GameClient
|
||||
{
|
||||
public override void Init()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ using Robust.Shared.Timing;
|
|||
// DEVNOTE: Games that want to be on the hub can change their namespace prefix in the "manifest.yml" file.
|
||||
namespace Content.Server;
|
||||
|
||||
public class EntryPoint : GameServer
|
||||
public sealed class EntryPoint : GameServer
|
||||
{
|
||||
public override void Init()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ using Robust.Shared.Localization;
|
|||
// DEVNOTE: Games that want to be on the hub can change their namespace prefix in the "manifest.yml" file.
|
||||
namespace Content.Shared;
|
||||
|
||||
public class EntryPoint : GameShared
|
||||
public sealed class EntryPoint : GameShared
|
||||
{
|
||||
// IoC services shared between the client and the server go here...
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue