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;
|
||
|
}
|
||
|
}
|
||
|
}
|