2017-10-15 02:36:31 +00:00
|
|
|
//
|
|
|
|
// JoystickMachine.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 14/10/2017.
|
2018-05-13 19:19:52 +00:00
|
|
|
// Copyright 2017 Thomas Harte. All rights reserved.
|
2017-10-15 02:36:31 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef JoystickMachine_hpp
|
|
|
|
#define JoystickMachine_hpp
|
|
|
|
|
|
|
|
#include "../Inputs/Joystick.hpp"
|
|
|
|
#include <vector>
|
|
|
|
|
2020-04-02 03:19:34 +00:00
|
|
|
namespace MachineTypes {
|
2017-10-15 02:36:31 +00:00
|
|
|
|
2020-04-02 03:19:34 +00:00
|
|
|
class JoystickMachine {
|
2017-10-15 02:36:31 +00:00
|
|
|
public:
|
2019-11-09 23:19:05 +00:00
|
|
|
virtual const std::vector<std::unique_ptr<Inputs::Joystick>> &get_joysticks() = 0;
|
2017-10-15 02:36:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* JoystickMachine_hpp */
|