mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-11-16 22:37:08 +01: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;
|
|
}
|
|
}
|
|
} |