mirror of
https://github.com/spice2x/spice2x.github.io.git
synced 2026-08-01 22:30:42 -07:00
23 lines
452 B
C++
23 lines
452 B
C++
#include "io.h"
|
|
|
|
std::vector<Button> &games::mfg::get_buttons() {
|
|
static std::vector<Button> buttons;
|
|
|
|
if (buttons.empty()) {
|
|
buttons = GameAPI::Buttons::getButtons("Mahjong Fight Girl");
|
|
|
|
GameAPI::Buttons::sortButtons(
|
|
&buttons,
|
|
"Service",
|
|
"Test",
|
|
"Coin Mech"
|
|
);
|
|
}
|
|
|
|
return buttons;
|
|
}
|
|
|
|
std::string games::mfg::get_buttons_help() {
|
|
return "";
|
|
}
|