From fd879f34f4f678205e25ebb143eb76de745b8e43 Mon Sep 17 00:00:00 2001 From: Christopher Merrill <47538097+Revan20911@users.noreply.github.com> Date: Sat, 15 Apr 2023 12:17:08 -0500 Subject: [PATCH] Update ConfigurationFileFormat.cs --- .../Configuration/ConfigurationFileFormat.cs | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs b/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs index 14c03957a..083af1ed0 100644 --- a/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs +++ b/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs @@ -301,6 +301,29 @@ namespace Ryujinx.Ui.Common.Configuration /// public bool ShowConsole { get; set; } + public bool WindowMaximized {get; set;} + + + /// + /// Width of the main window in pixels. + /// + public int WindowSizeWidth { get; set;} + + /// + /// Height of the main window in pixels. + /// + public int WindowSizeHeight { get; set;} + + /// + /// Horizontal position of the main window in pixels. + /// + public int WindowPositionX { get; set;} + + /// + /// Vertical position of the main window in pixels. + /// + public int WindowPositionY { get; set;} + /// /// Enable or disable keyboard support (Independent from controllers binding) ///