mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-19 16:32:12 +00:00
11 lines
344 B
C#
11 lines
344 B
C#
namespace Ryujinx.Ava.Utilities.Configuration.UI
|
|
{
|
|
public struct WindowStartup
|
|
{
|
|
public int WindowSizeWidth { get; set; }
|
|
public int WindowSizeHeight { get; set; }
|
|
public int WindowPositionX { get; set; }
|
|
public int WindowPositionY { get; set; }
|
|
public bool WindowMaximized { get; set; }
|
|
}
|
|
}
|