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