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