aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/OsHle/Services/Am/FocusState.cs
blob: 08dffe3b69664030994f3638e3760137c251100a (plain)
1
2
3
4
5
6
7
8
namespace Ryujinx.Core.OsHle.IpcServices.Am
{
    enum FocusState
    {
        InFocus    = 1,
        OutOfFocus = 2
    }
}