mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-02-18 00:00:35 -05:00
![Christopher Leggett](/assets/img/avatar_default.png)
* 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
25 lines
331 B
C++
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);
|
|
|
|
};
|
|
};
|