mirror of
https://github.com/spice2x/spice2x.github.io.git
synced 2026-08-01 22:30:42 -07:00
19 lines
287 B
C++
19 lines
287 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include "cfg/api.h"
|
|
|
|
namespace games::mfg {
|
|
namespace Buttons {
|
|
enum {
|
|
Service,
|
|
Test,
|
|
CoinMech
|
|
};
|
|
}
|
|
|
|
// getters
|
|
std::vector<Button> &get_buttons();
|
|
std::string get_buttons_help();
|
|
}
|