mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-07 19:57:45 +03: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 };
|
|
};
|