1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-18 18:45:08 +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 };
};