SystemSettings.cs 231 B

1234567891011
  1. using System.Collections.Generic;
  2. using Ryujinx.HLE.OsHle;
  3. namespace Ryujinx.HLE.Settings
  4. {
  5. public class SystemSettings
  6. {
  7. public Profile User { get; set; }
  8. public ColorSet ThemeColor { get; set; }
  9. }
  10. }