RAGECOOP-V/Client/Settings.cs
2021-07-07 13:36:25 +02:00

10 lines
249 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;
}
}