mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2026-02-10 15:07:21 -05:00
Moved AppLibrary, Configuration, and PlayReport namespaces to Ryujinx.Systems, add the compat list stuff in the base Ryujinx.Systems namespace. Moved the compatibility UI stuff to the proper UI view/viewmodel folders.
12 lines
342 B
C#
12 lines
342 B
C#
namespace Ryujinx.Ava.Systems.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; }
|
|
}
|
|
}
|