Update ConfigurationFileFormat.cs

This commit is contained in:
Christopher Merrill 2023-04-15 12:17:08 -05:00 committed by GitHub
parent 124e426ab5
commit fd879f34f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -301,6 +301,29 @@ namespace Ryujinx.Ui.Common.Configuration
/// </summary> /// </summary>
public bool ShowConsole { get; set; } public bool ShowConsole { get; set; }
public bool WindowMaximized {get; set;}
/// <summary>
/// Width of the main window in pixels.
/// </summary>
public int WindowSizeWidth { get; set;}
/// <summary>
/// Height of the main window in pixels.
/// </summary>
public int WindowSizeHeight { get; set;}
/// <summary>
/// Horizontal position of the main window in pixels.
/// </summary>
public int WindowPositionX { get; set;}
/// <summary>
/// Vertical position of the main window in pixels.
/// </summary>
public int WindowPositionY { get; set;}
/// <summary> /// <summary>
/// Enable or disable keyboard support (Independent from controllers binding) /// Enable or disable keyboard support (Independent from controllers binding)
/// </summary> /// </summary>