mirror of
				https://github.com/TomHarte/CLK.git
				synced 2025-11-04 00:16:26 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			319 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			319 B
		
	
	
	
		
			C++
		
	
	
	
	
	
//
 | 
						|
//  MouseMachine.hpp
 | 
						|
//  Clock Signal
 | 
						|
//
 | 
						|
//  Created by Thomas Harte on 11/06/2019.
 | 
						|
//  Copyright © 2019 Thomas Harte. All rights reserved.
 | 
						|
//
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include "Inputs/Mouse.hpp"
 | 
						|
 | 
						|
namespace MachineTypes {
 | 
						|
 | 
						|
struct MouseMachine {
 | 
						|
	// TODO: support multiple mice?
 | 
						|
	virtual Inputs::Mouse &get_mouse() = 0;
 | 
						|
};
 | 
						|
 | 
						|
}
 |