mirror of
				https://github.com/TomHarte/CLK.git
				synced 2025-11-04 00:16:26 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			353 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			353 B
		
	
	
	
		
			C++
		
	
	
	
	
	
//
 | 
						|
//  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 <vector>
 | 
						|
 | 
						|
namespace MachineTypes {
 | 
						|
 | 
						|
struct JoystickMachine {
 | 
						|
	virtual const std::vector<std::unique_ptr<Inputs::Joystick>> &get_joysticks() = 0;
 | 
						|
};
 | 
						|
 | 
						|
}
 |