mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-19 13:36:53 +02:00
14 lines
No EOL
231 B
C#
14 lines
No EOL
231 B
C#
using ChocolArm64;
|
|
|
|
namespace Ryujinx.OsHle.Handles
|
|
{
|
|
class HThread
|
|
{
|
|
public AThread Thread { get; private set; }
|
|
|
|
public HThread(AThread Thread)
|
|
{
|
|
this.Thread = Thread;
|
|
}
|
|
}
|
|
} |