mirror of
https://github.com/RGBCube/serenity
synced 2026-01-16 04:20:59 +00:00
8 lines
116 B
C
8 lines
116 B
C
#pragma once
|
|
|
|
struct MousePacket {
|
|
int dx { 0 };
|
|
int dy { 0 };
|
|
int dz { 0 };
|
|
byte buttons { 0 };
|
|
};
|