mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-11-05 23:19:00 -06:00
aloha
This commit is contained in:
14
Ryujinx/OsHle/Handles/HThread.cs
Normal file
14
Ryujinx/OsHle/Handles/HThread.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using ChocolArm64;
|
||||
|
||||
namespace Ryujinx.OsHle.Handles
|
||||
{
|
||||
class HThread
|
||||
{
|
||||
public AThread Thread { get; private set; }
|
||||
|
||||
public HThread(AThread Thread)
|
||||
{
|
||||
this.Thread = Thread;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user