12 lines
252 B
C#
12 lines
252 B
C#
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;
|
|
}
|