fishbait/ServerProject-DONT-IMPORT-INTO-UNITY/Config.cs
2021-01-18 17:20:50 -06:00

15 lines
413 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;
}
}