mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-01 10:05:55 +00:00
22 lines
332 B
C++
22 lines
332 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 {
|
|
|
|
class MouseMachine {
|
|
public:
|
|
// TODO: support multiple mice?
|
|
virtual Inputs::Mouse &get_mouse() = 0;
|
|
};
|
|
|
|
}
|