2025-11-23 20:53:45 -06:00
|
|
|
namespace LANCommander.Launcher.Settings;
|
|
|
|
|
|
|
|
|
|
public class WindowSettings
|
|
|
|
|
{
|
|
|
|
|
public bool Maximized { get; set; } = false;
|
2026-05-28 00:09:53 -05:00
|
|
|
public bool BigScreenMode { get; set; } = false;
|
2025-11-23 20:53:45 -06:00
|
|
|
public int Width { get; set; } = 1024;
|
|
|
|
|
public int Height { get; set; } = 768;
|
|
|
|
|
public int X { get; set; } = 0;
|
|
|
|
|
public int Y { get; set; } = 0;
|
|
|
|
|
}
|