Fix warnings.

This commit is contained in:
Vera Aguilera Puerto 2022-04-23 15:33:18 +02:00
parent 5c4960e729
commit c71a748112
3 changed files with 3 additions and 3 deletions

View file

@ -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. // DEVNOTE: Games that want to be on the hub can change their namespace prefix in the "manifest.yml" file.
namespace Content.Client; namespace Content.Client;
public class EntryPoint : GameClient public sealed class EntryPoint : GameClient
{ {
public override void Init() public override void Init()
{ {

View file

@ -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. // DEVNOTE: Games that want to be on the hub can change their namespace prefix in the "manifest.yml" file.
namespace Content.Server; namespace Content.Server;
public class EntryPoint : GameServer public sealed class EntryPoint : GameServer
{ {
public override void Init() public override void Init()
{ {

View file

@ -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. // DEVNOTE: Games that want to be on the hub can change their namespace prefix in the "manifest.yml" file.
namespace Content.Shared; namespace Content.Shared;
public class EntryPoint : GameShared public sealed class EntryPoint : GameShared
{ {
// IoC services shared between the client and the server go here... // IoC services shared between the client and the server go here...