1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-08-23 12:36:34 -05:00

misc: Move configuration management to the Ryujinx project (#2269)

* Decouple configuration from Ryujinx.HLE and Ryujinx.Input

* Move Configuration to the Ryujinx project
This commit is contained in:
Mary
2021-05-16 17:12:14 +02:00
committed by GitHub
parent f48828351c
commit bec67dbef7
28 changed files with 387 additions and 215 deletions

View File

@@ -0,0 +1,8 @@
namespace Ryujinx.Configuration.Ui
{
public struct ColumnSort
{
public int SortColumnId { get; set; }
public bool SortAscending { get; set; }
}
}

View File

@@ -0,0 +1,16 @@
namespace Ryujinx.Configuration.Ui
{
public struct GuiColumns
{
public bool FavColumn { get; set; }
public bool IconColumn { get; set; }
public bool AppColumn { get; set; }
public bool DevColumn { get; set; }
public bool VersionColumn { get; set; }
public bool TimePlayedColumn { get; set; }
public bool LastPlayedColumn { get; set; }
public bool FileExtColumn { get; set; }
public bool FileSizeColumn { get; set; }
public bool PathColumn { get; set; }
}
}