15 lines
441 B
C#
15 lines
441 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace LightReflectiveMirror
|
|
{
|
|
class Config
|
|
{
|
|
public string TransportDLL = "SimpleWebSocketTransportCompiled.dll";
|
|
public string TransportClass = "Mirror.SimpleWeb.SimpleWebTransport";
|
|
public string AuthenticationKey = "Secret Auth Key";
|
|
public int UpdateLoopTime = 50;
|
|
public int UpdateHeartbeatInterval = 20;
|
|
}
|
|
}
|