Delete Config.cs

This commit is contained in:
cxxpxr 2021-04-03 22:48:41 -04:00 committed by GitHub
parent f6eb6654d7
commit 7491c3339a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,20 +0,0 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace LightReflectiveMirror
{
class Config
{
public string TransportDLL = "MultiCompiled.dll";
public string TransportClass = "Mirror.SimpleWebTransport";
public string AuthenticationKey = "Secret Auth Key";
public int UpdateLoopTime = 10;
public int UpdateHeartbeatInterval = 100;
public bool UseEndpoint = true;
public ushort EndpointPort = 8080;
public bool EndpointServerList = true;
public bool EnableNATPunchtroughServer = true;
public ushort NATPunchtroughPort = 7776;
}
}