mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-25 05:55:13 +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 };
|
|
};
|