mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
9 lines
116 B
C
9 lines
116 B
C
#pragma once
|
|
|
|
struct MousePacket {
|
|
int dx { 0 };
|
|
int dy { 0 };
|
|
int dz { 0 };
|
|
byte buttons { 0 };
|
|
};
|