WebExitReason.cs 198 B

1234567891011
  1. namespace Ryujinx.HLE.HOS.Applets.Browser
  2. {
  3. public enum WebExitReason : uint
  4. {
  5. ExitButton,
  6. BackButton,
  7. Requested,
  8. LastUrl,
  9. ErrorDialog = 7
  10. }
  11. }