Files
spice2x-r3d/games/qks/io.cpp
T
2025-05-07 00:25:31 +09:00

29 lines
703 B
C++

#include "io.h"
std::vector<Button> &games::qks::get_buttons() {
static std::vector<Button> buttons;
if (buttons.empty()) {
buttons = GameAPI::Buttons::getButtons("QuizKnock STADIUM");
GameAPI::Buttons::sortButtons(
&buttons,
"Test",
"Service",
"Coin",
"Q Button Press",
"Q Button Sensor 1",
"Q Button Sensor 2",
"Q Button Sensor 3",
"Headphones Detect",
"Microphone Detect"
);
}
return buttons;
}
std::string games::qks::get_buttons_help() {
// keep to max 100 characters wide
return "";
}