feat: client configuration file added

This commit is contained in:
2025-06-21 00:36:08 +03:00
parent 5df09f64e2
commit bc6aaa865a
6 changed files with 51 additions and 22 deletions

View File

@@ -0,0 +1,11 @@
public class ClientConfiguration
{
public bool Host = false;
public int HostPort = 8888;
public string ServerAddress = "localhost";
public int ServerPort = 8888;
public int windowWidth = 1024;
public int windowHeight = 576;
}