mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-11-24 11:05:12 +00: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;
|
|
}
|
|
}
|
|
} |