Ryujinx/Ryujinx.Horizon.Common/IThreadContext.cs

12 lines
185 B
C#
Raw Normal View History

2023-01-01 03:44:50 +00:00
namespace Ryujinx.Horizon.Common
{
public interface IThreadContext
{
bool Running { get; }
ulong TlsAddress { get; }
2023-01-01 03:44:50 +00:00
ulong GetX(int index);
}
}