mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-16 07:00:17 +00:00
11 lines
187 B
C#
11 lines
187 B
C#
using System.Runtime.Intrinsics;
|
|
|
|
namespace Ryujinx.Horizon.Common
|
|
{
|
|
public interface IThreadContext
|
|
{
|
|
bool Running { get; }
|
|
|
|
ulong TlsAddress { get; }
|
|
}
|
|
}
|