mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-09-10 11:55:16 +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);
|
|
}
|
|
}
|