Enable nullability in Content.Server (#3685)

This commit is contained in:
DrSmugleaf
2021-03-16 15:50:20 +01:00
committed by GitHub
parent 90fec0ed24
commit a5ade526b7
306 changed files with 1616 additions and 1441 deletions

View File

@@ -14,8 +14,8 @@ using Content.Server.Interfaces.PDA;
using Content.Server.Sandbox;
using Content.Server.Voting;
using Content.Shared.Actions;
using Content.Shared.Kitchen;
using Content.Shared.Alert;
using Content.Shared.Kitchen;
using Robust.Server.Player;
using Robust.Shared.ContentPack;
using Robust.Shared.GameObjects;
@@ -27,10 +27,10 @@ namespace Content.Server
{
public class EntryPoint : GameServer
{
private IGameTicker _gameTicker;
private EuiManager _euiManager;
private StatusShell _statusShell;
private IVoteManager _voteManager;
private IGameTicker _gameTicker = default!;
private EuiManager _euiManager = default!;
private StatusShell _statusShell = default!;
private IVoteManager _voteManager = default!;
/// <inheritdoc />
public override void Init()