IThreadContext.cs 185 B

1234567891011
  1. namespace Ryujinx.Horizon.Common
  2. {
  3. public interface IThreadContext
  4. {
  5. bool Running { get; }
  6. ulong TlsAddress { get; }
  7. ulong GetX(int index);
  8. }
  9. }