20 lines
647 B
C#
20 lines
647 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 = true;
|
|
public ushort EndpointPort = 8080;
|
|
public bool EndpointServerList = true;
|
|
public bool EnableNATPunchtroughServer = true;
|
|
public ushort NATPunchtroughPort = 7776;
|
|
}
|
|
}
|