mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-11 12:05:09 -05:00
68e7f2e6c1
* Wii U support * [WiiU] Combined Dockerfile * [WiiU] Combined Dockerfile * [WiiU] Combined Dockerfile * Add Jenkins support * wiiu: fix scissor clamp * wiiu: improve button remapping * wiiu: fix scaling issues * Update Dockerfile after merge * Pull assets before build * Only stop container once * Adjust logging sinks * wiiu: Change button mapping to match PC version * wiiu: Implement controller changes * wiiu: Update BUILDING.md Co-authored-by: qurious-pixel <62252937+qurious-pixel@users.noreply.github.com> Co-authored-by: David Chavez <david@dcvz.io>
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);
|
|
|
|
};
|
|
};
|