mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-01-08 10:43:36 +00:00
14 lines
231 B
C#
14 lines
231 B
C#
|
using ChocolArm64;
|
||
|
|
||
|
namespace Ryujinx.OsHle.Handles
|
||
|
{
|
||
|
class HThread
|
||
|
{
|
||
|
public AThread Thread { get; private set; }
|
||
|
|
||
|
public HThread(AThread Thread)
|
||
|
{
|
||
|
this.Thread = Thread;
|
||
|
}
|
||
|
}
|
||
|
}
|