mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-11-25 16:50:24 +01:00
12 lines
198 B
C#
12 lines
198 B
C#
|
namespace Ryujinx.HLE.HOS.Applets.Browser
|
|||
|
{
|
|||
|
public enum WebExitReason : uint
|
|||
|
{
|
|||
|
ExitButton,
|
|||
|
BackButton,
|
|||
|
Requested,
|
|||
|
LastUrl,
|
|||
|
ErrorDialog = 7
|
|||
|
}
|
|||
|
}
|