GuiColumns.cs 422 B

12345678910111213141516
  1. namespace Ryujinx.Configuration.Ui
  2. {
  3. public struct GuiColumns
  4. {
  5. public bool FavColumn;
  6. public bool IconColumn;
  7. public bool AppColumn;
  8. public bool DevColumn;
  9. public bool VersionColumn;
  10. public bool TimePlayedColumn;
  11. public bool LastPlayedColumn;
  12. public bool FileExtColumn;
  13. public bool FileSizeColumn;
  14. public bool PathColumn;
  15. }
  16. }