Fixed client exceptions

This commit is contained in:
EntenKoeniq
2021-12-03 20:30:00 +01:00
parent 52f5ab5b3d
commit 129a4faea1
9 changed files with 124 additions and 61 deletions

View File

@ -1,10 +1,13 @@
namespace CoopClient
{
internal class Settings
/// <summary>
/// Don't use it!
/// </summary>
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;
internal string Username { get; set; } = "Player";
internal string LastServerAddress { get; set; } = "127.0.0.1:4499";
internal bool FlipMenu { get; set; } = false;
internal int StreamedNpc { get; set; } = 10;
}
}