mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-05 21:05:51 +00:00
24 lines
361 B
C++
24 lines
361 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 MouseMachine {
|
|
|
|
class Machine {
|
|
public:
|
|
virtual Inputs::Mouse &get_mouse() = 0;
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* MouseMachine_hpp */
|