2024-05-19 08:54:49 +03:00
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Ragon.Relay
|
|
|
|
|
{
|
|
|
|
|
[Serializable]
|
|
|
|
|
public struct RelayConfiguration
|
|
|
|
|
{
|
|
|
|
|
public string ServerKey;
|
|
|
|
|
public string ServerType;
|
2024-08-15 23:20:23 +03:00
|
|
|
public string ServerAddress;
|
2024-05-19 08:54:49 +03:00
|
|
|
public ushort ServerTickRate;
|
|
|
|
|
public string Protocol;
|
|
|
|
|
public ushort Port;
|
|
|
|
|
public int LimitConnections;
|
|
|
|
|
public int LimitPlayersPerRoom;
|
|
|
|
|
public int LimitRooms;
|
|
|
|
|
public int LimitBufferedEvents;
|
|
|
|
|
public int LimitUserData;
|
|
|
|
|
}
|
|
|
|
|
}
|