aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Horizon.Common/IThreadContext.cs
blob: 47aea1a38f74fcc4db497cbfb1739778d0e07985 (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);
    }
}