// // JoystickMachine.hpp // Clock Signal // // Created by Thomas Harte on 14/10/2017. // Copyright 2017 Thomas Harte. All rights reserved. // #pragma once #include "../Inputs/Joystick.hpp" #include namespace MachineTypes { class JoystickMachine { public: virtual const std::vector> &get_joysticks() = 0; }; }