mirror of
https://github.com/spice2x/spice2x.github.io.git
synced 2026-08-04 15:50:42 -07:00
18 lines
260 B
C++
18 lines
260 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include "cfg/api.h"
|
|
|
|
namespace games::onpara {
|
|
namespace Buttons {
|
|
enum {
|
|
Service,
|
|
Test,
|
|
Start,
|
|
Headphone,
|
|
};
|
|
}
|
|
|
|
std::vector<Button> &get_buttons();
|
|
}
|