diff --git a/ServerProject-DONT-IMPORT-INTO-UNITY/LRM/Program/Program.cs b/ServerProject-DONT-IMPORT-INTO-UNITY/LRM/Program/Program.cs index 87570a3..f175636 100644 --- a/ServerProject-DONT-IMPORT-INTO-UNITY/LRM/Program/Program.cs +++ b/ServerProject-DONT-IMPORT-INTO-UNITY/LRM/Program/Program.cs @@ -15,30 +15,6 @@ namespace LightReflectiveMirror { partial class Program { - public static Transport transport; - public static Program instance; - public static Config conf; - - private RelayHandler _relay; - private MethodInfo _awakeMethod; - private MethodInfo _startMethod; - private MethodInfo _updateMethod; - private MethodInfo _lateUpdateMethod; - - private DateTime _startupTime; - public static string publicIP; - private List _currentConnections = new List(); - public Dictionary NATConnections = new Dictionary(); - private BiDictionary _pendingNATPunches = new BiDictionary(); - private int _currentHeartbeatTimer = 0; - - private byte[] _NATRequest = new byte[500]; - private int _NATRequestPosition = 0; - - private UdpClient _punchServer; - - private readonly string CONFIG_PATH = System.Environment.GetEnvironmentVariable("LRM_CONFIG_PATH") ?? "config.json"; - public static void Main(string[] args) => new Program().MainAsync().GetAwaiter().GetResult(); public List GetRooms() => _relay.rooms; diff --git a/ServerProject-DONT-IMPORT-INTO-UNITY/LRM/Program/ProgramVariables.cs b/ServerProject-DONT-IMPORT-INTO-UNITY/LRM/Program/ProgramVariables.cs index 545a6e0..7376991 100644 --- a/ServerProject-DONT-IMPORT-INTO-UNITY/LRM/Program/ProgramVariables.cs +++ b/ServerProject-DONT-IMPORT-INTO-UNITY/LRM/Program/ProgramVariables.cs @@ -32,6 +32,6 @@ namespace LightReflectiveMirror private UdpClient _punchServer; - private const string CONFIG_PATH = "config.json"; + private readonly string CONFIG_PATH = System.Environment.GetEnvironmentVariable("LRM_CONFIG_PATH") ?? "config.json"; } }