Initial commit

This commit is contained in:
InoriRus
2021-12-01 19:29:27 +10:00
parent b1e7dcdc5d
commit 43f49c8763
1843 changed files with 1111694 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
#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);
}
} // namespace Kyty::Libs
#endif // KYTY_EMU_ENABLED