Shipwright/libultraship/libultraship/WiiUImpl.h
Christopher Leggett f300c02b63
Re-enables OTR patches from mods folder (#1785)
* Re-enables OTR patches from mods folder.

* Don't error if an OTR doesn't include a version file

Just info log and continue. If the patch fails to apply then we can error, and SoH can do it's own validation later.

* Fixes small error on my side
2022-10-17 18:44:10 -04:00

25 lines
331 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 ThrowInvalidOTR();
void Update();
VPADStatus *GetVPADStatus(VPADReadError *error);
KPADStatus *GetKPADStatus(WPADChan chan, KPADError *error);
};
};