RAGECOOP-V/Client/Settings.cs
2021-11-28 23:35:37 +01:00

11 lines
302 B
C#

namespace CoopClient
{
internal class Settings
{
public string Username { get; set; } = "Player";
public string LastServerAddress { get; set; } = "127.0.0.1:4499";
public bool FlipMenu { get; set; } = false;
public int StreamedNpc { get; set; } = 10;
}
}