mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-16 07:30:32 +00:00
Update ConfigurationFileFormat.cs
This commit is contained in:
parent
124e426ab5
commit
fd879f34f4
1 changed files with 23 additions and 0 deletions
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue