mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-03-10 17:14:25 +00:00
12 lines
182 B
C#
12 lines
182 B
C#
namespace Ryujinx.Horizon.Common
|
|
{
|
|
public interface IThreadContext
|
|
{
|
|
bool Running { get; }
|
|
|
|
ulong TlsAddress { get; }
|
|
|
|
ulong GetX(int index);
|
|
}
|
|
}
|