mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-13 13:05:06 -05:00
23 lines
306 B
C
23 lines
306 B
C
|
#pragma once
|
||
|
|
||
|
#include <vpad/input.h>
|
||
|
#include <padscore/kpad.h>
|
||
|
|
||
|
namespace Ship {
|
||
|
namespace WiiU {
|
||
|
|
||
|
void Init();
|
||
|
|
||
|
void Exit();
|
||
|
|
||
|
void ThrowMissingOTR(const char* otrPath);
|
||
|
|
||
|
void Update();
|
||
|
|
||
|
VPADStatus *GetVPADStatus(VPADReadError *error);
|
||
|
|
||
|
KPADStatus *GetKPADStatus(WPADChan chan, KPADError *error);
|
||
|
|
||
|
};
|
||
|
};
|