aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Horizon.Common/IThreadContext.cs
blob: 6a2b71b679b24e68f12b8058693c67547d4ffda6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
namespace Ryujinx.Horizon.Common
{
    public interface IThreadContext
    {
        bool Running { get; }

        ulong TlsAddress { get; }

        ulong GetX(int index);
    }
}