1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-17 12:45:06 +00:00
serenity/Kernel/MousePacket.h

8 lines
116 B
C

#pragma once
struct MousePacket {
int dx { 0 };
int dy { 0 };
int dz { 0 };
byte buttons { 0 };
};