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