11 lines
300 B
C#
11 lines
300 B
C#
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;
|
|
}
|
|
}
|