RAGECOOP-V/Client/Settings.cs
EntenKoeniq 08af1a4ca3 Not tested, but should work 🤷‍♂️😂
2021-07-11 04:45:56 +02:00

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;
}
}