aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Ui.Common/Configuration/Ui/WindowStartup.cs
blob: ce0dde6aaf702104ac65ab6e9ca793881159ab50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
namespace Ryujinx.Ui.Common.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; }
    }
}