aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.UI.Common/Configuration/UI/WindowStartup.cs
blob: 0df459134aa74d6e4bacdbb68f8a7c00a498004e (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; }
    }
}