26 lines
693 B
C#
26 lines
693 B
C#
namespace CoopClient
|
|
{
|
|
/// <summary>
|
|
/// Don't use it!
|
|
/// </summary>
|
|
public class Settings
|
|
{
|
|
/// <summary>
|
|
/// Don't use it!
|
|
/// </summary>
|
|
public string Username { get; set; } = "Player";
|
|
/// <summary>
|
|
/// Don't use it!
|
|
/// </summary>
|
|
public string LastServerAddress { get; set; } = "127.0.0.1:4499";
|
|
/// <summary>
|
|
/// Don't use it!
|
|
/// </summary>
|
|
public string MasterServer { get; set; } = "https://gtacoopr.000webhostapp.com/servers.php";
|
|
/// <summary>
|
|
/// Don't use it!
|
|
/// </summary>
|
|
public bool FlipMenu { get; set; } = false;
|
|
}
|
|
}
|