2019-06-11 17:47:24 -04:00
|
|
|
//
|
|
|
|
// MouseMachine.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 11/06/2019.
|
|
|
|
// Copyright © 2019 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2024-01-16 23:34:46 -05:00
|
|
|
#pragma once
|
2019-06-11 17:47:24 -04:00
|
|
|
|
|
|
|
#include "../Inputs/Mouse.hpp"
|
|
|
|
|
2020-04-01 23:19:34 -04:00
|
|
|
namespace MachineTypes {
|
2019-06-11 17:47:24 -04:00
|
|
|
|
2020-04-01 23:19:34 -04:00
|
|
|
class MouseMachine {
|
2019-06-11 17:47:24 -04:00
|
|
|
public:
|
2020-04-01 23:19:34 -04:00
|
|
|
// TODO: support multiple mice?
|
2019-06-11 18:41:41 -04:00
|
|
|
virtual Inputs::Mouse &get_mouse() = 0;
|
2019-06-11 17:47:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|