mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-01 10:05:55 +00:00
f417fa82a4
Simultaneously cleans up some of the naming conventions and tries to make things a bit more template-compatible.
25 lines
400 B
C++
25 lines
400 B
C++
//
|
|
// MouseMachine.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 11/06/2019.
|
|
// Copyright © 2019 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef MouseMachine_hpp
|
|
#define MouseMachine_hpp
|
|
|
|
#include "../Inputs/Mouse.hpp"
|
|
|
|
namespace MachineTypes {
|
|
|
|
class MouseMachine {
|
|
public:
|
|
// TODO: support multiple mice?
|
|
virtual Inputs::Mouse &get_mouse() = 0;
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* MouseMachine_hpp */
|