mirror of
https://github.com/Retropex/dolphin.git
synced 2025-05-15 04:40:44 +02:00
25 lines
566 B
C++
25 lines
566 B
C++
#pragma once
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "InputCommon/ControllerEmu/ControlGroup/Buttons.h"
|
|
#include "InputCommon/ControllerEmu/ControlGroup/ControlGroup.h"
|
|
#include "InputCommon/ControllerEmu/ControlGroup/Slider.h"
|
|
|
|
namespace ControllerEmu
|
|
{
|
|
class PrimeHackMisc : public ControlGroup
|
|
{
|
|
public:
|
|
explicit PrimeHackMisc(const std::string& name_);
|
|
PrimeHackMisc(const std::string& ini_name, const std::string& group_name);
|
|
|
|
void AddInput(std::string button_name, bool toggle = false);
|
|
|
|
private:
|
|
|
|
};
|
|
} // namespace ControllerEmu
|