RAGECOOP-V/Client/Settings.cs

11 lines
300 B
C#
Raw Normal View History

2021-07-07 13:36:25 +02:00
namespace CoopClient
{
public 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;
2021-07-07 13:36:25 +02:00
}
}