2021-07-07 13:36:25 +02:00
|
|
|
|
namespace CoopClient
|
|
|
|
|
{
|
2021-11-28 23:35:37 +01:00
|
|
|
|
internal class Settings
|
2021-07-07 13:36:25 +02:00
|
|
|
|
{
|
|
|
|
|
public string Username { get; set; } = "Player";
|
|
|
|
|
public string LastServerAddress { get; set; } = "127.0.0.1:4499";
|
|
|
|
|
public bool FlipMenu { get; set; } = false;
|
2021-07-11 04:45:56 +02:00
|
|
|
|
public int StreamedNpc { get; set; } = 10;
|
2021-07-07 13:36:25 +02:00
|
|
|
|
}
|
|
|
|
|
}
|