mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
8 lines
92 B
C
8 lines
92 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
struct MousePacket {
|
||
|
|
int dx { 0 };
|
||
|
|
int dy { 0 };
|
||
|
|
byte buttons;
|
||
|
|
};
|