mirror of
https://github.com/InoriRus/Kyty.git
synced 2026-08-28 05:06:40 +00:00
30 lines
814 B
C++
30 lines
814 B
C++
#include "Emulator/Common.h"
|
|
#include "Emulator/Controller.h"
|
|
#include "Emulator/Libs/Libs.h"
|
|
#include "Emulator/SymbolDatabase.h"
|
|
|
|
#ifdef KYTY_EMU_ENABLED
|
|
|
|
namespace Kyty::Libs {
|
|
|
|
LIB_VERSION("Pad", 1, "Pad", 1, 1);
|
|
|
|
LIB_DEFINE(InitPad_1)
|
|
{
|
|
PRINT_NAME_ENABLE(true);
|
|
|
|
LIB_FUNC("hv1luiJrqQM", Controller::PadInit);
|
|
LIB_FUNC("xk0AcarP3V4", Controller::PadOpen);
|
|
LIB_FUNC("clVvL4ZDntw", Controller::PadSetMotionSensorState);
|
|
LIB_FUNC("gjP9-KQzoUk", Controller::PadGetControllerInformation);
|
|
LIB_FUNC("YndgXqQVV7c", Controller::PadReadState);
|
|
LIB_FUNC("q1cHNfGycLI", Controller::PadRead);
|
|
LIB_FUNC("yFVnOdGxvZY", Controller::PadSetVibration);
|
|
LIB_FUNC("DscD1i9HX1w", Controller::PadResetLightBar);
|
|
LIB_FUNC("RR4novUEENY", Controller::PadSetLightBar);
|
|
}
|
|
|
|
} // namespace Kyty::Libs
|
|
|
|
#endif // KYTY_EMU_ENABLED
|