aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Applets/Browser/WebExitReason.cs
blob: ebb705acbe977ad38ecf50b7e15389dee8287415 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
namespace Ryujinx.HLE.HOS.Applets.Browser
{
    public enum WebExitReason : uint
    {
        ExitButton,
        BackButton,
        Requested,
        LastUrl,
        ErrorDialog = 7,
    }
}