RAGECOOP-V/Server/Settings.cs
EntenKoeniq 05f70a6d04 NOT FINISHED YET!
More info later...
2021-09-29 14:34:22 +02:00

17 lines
633 B
C#

namespace CoopServer
{
public class Settings
{
public int ServerPort { get; set; } = 4499;
public int MaxPlayers { get; set; } = 16;
public string ServerName { get; set; } = "GTACoop:R server";
public string WelcomeMessage { get; set; } = "Welcome on this server :)";
public string GameMode { get; set; } = "";
public bool Allowlist { get; set; } = false;
public bool NpcsAllowed { get; set; } = true;
public bool ModsAllowed { get; set; } = false;
public bool UPnP { get; set; } = true;
public bool DebugMode { get; set; } = false;
}
}