15#include "SubComponent.h"
19class Mouse1350 final :
public SubComponent {
21 Descriptions descriptions = {{
24 .description =
"Mouse 1350"
55 Mouse1350(C64 &ref) : SubComponent(ref) { }
57 Mouse1350& operator= (
const Mouse1350& other) {
78 template <
class T>
void serialize(T& worker) { } SERIALIZERS(serialize);
79 void _reset(
bool hard)
override;
88 const Descriptions &getDescriptions()
const override {
return descriptions; }
98 void setLeftMouseButton(
bool value) { leftButton = value; }
99 void setRightMouseButton(
bool value) { rightButton = value; }
106 u8 readControlPort()
const;
109 void execute(i64 targetX, i64 targetY);
VirtualC64 project namespace.
Definition CmdQueue.cpp:16