RAGECOOP-V/Client/Settings.cs

26 lines
692 B
C#
Raw Normal View History

2021-07-07 13:36:25 +02:00
namespace CoopClient
{
2021-12-03 20:30:00 +01:00
/// <summary>
/// Don't use it!
/// </summary>
public class Settings
2021-07-07 13:36:25 +02:00
{
/// <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>
2021-12-08 03:59:14 +01:00
public string MasterServer { get; set; } = "http://gtacoopr.000webhostapp.com/servers.php";
/// <summary>
/// Don't use it!
/// </summary>
public bool FlipMenu { get; set; } = false;
2021-07-07 13:36:25 +02:00
}
}