WindowStartup.cs
1 namespace Ryujinx.UI.Common.Configuration.UI 2 { 3 public struct WindowStartup 4 { 5 public int WindowSizeWidth { get; set; } 6 public int WindowSizeHeight { get; set; } 7 public int WindowPositionX { get; set; } 8 public int WindowPositionY { get; set; } 9 public bool WindowMaximized { get; set; } 10 } 11 }