mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 17:45:26 +00: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
|
|||
|
}
|
|||
|
}
|