HID Implementation (#20)
* Basic HID Implementation * Basic HID Implementation in Config * HID Corrections * HID Corrections 2
This commit is contained in:
parent
595e7ee588
commit
f469b968a8
12 changed files with 758 additions and 75 deletions
|
@ -14,6 +14,7 @@ namespace Ryujinx
|
|||
internal NsGpu Gpu { get; private set; }
|
||||
internal Horizon Os { get; private set; }
|
||||
internal VirtualFs VFs { get; private set; }
|
||||
internal Hid Hid { get; private set; }
|
||||
|
||||
public event EventHandler Finish;
|
||||
|
||||
|
@ -24,6 +25,7 @@ namespace Ryujinx
|
|||
Gpu = new NsGpu(Renderer);
|
||||
Os = new Horizon(this);
|
||||
VFs = new VirtualFs();
|
||||
Hid = new Hid(this);
|
||||
}
|
||||
|
||||
internal virtual void OnFinish(EventArgs e)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue