fishbait/ServerProject-DONT-IMPORT-INTO-UNITY/Config.cs
2021-03-31 15:35:07 -04:00

18 lines
545 B
C#

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 = false;
public ushort EndpointPort = 6969;
public bool EndpointServerList = false;
}
}