mirror of
https://gitea.tendokyu.moe/beerpsi/segatools-configurator.git
synced 2025-02-17 18:29:14 +01:00
18 lines
311 B
C++
18 lines
311 B
C++
//
|
|
// Created by beerpsi on 4/14/2024.
|
|
//
|
|
|
|
#ifndef SEGATOOLS_CONFIGURATOR_MERCURY_IO_H
|
|
#define SEGATOOLS_CONFIGURATOR_MERCURY_IO_H
|
|
|
|
#include <vector>
|
|
|
|
#include "../../button.h"
|
|
|
|
namespace games::mercury {
|
|
std::vector<Button> &get_buttons();
|
|
}
|
|
|
|
|
|
#endif //SEGATOOLS_CONFIGURATOR_MERCURY_IO_H
|