diff options
Diffstat (limited to 'Ryujinx.Horizon.Common/IThreadContext.cs')
-rw-r--r-- | Ryujinx.Horizon.Common/IThreadContext.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Ryujinx.Horizon.Common/IThreadContext.cs b/Ryujinx.Horizon.Common/IThreadContext.cs new file mode 100644 index 00000000..47aea1a3 --- /dev/null +++ b/Ryujinx.Horizon.Common/IThreadContext.cs @@ -0,0 +1,11 @@ +namespace Ryujinx.Horizon.Common +{ + public interface IThreadContext + { + bool Running { get; } + + ulong TlsAddress { get; } + + ulong GetX(int index); + } +} |