summaryrefslogtreecommitdiff
path: root/Kernel/MousePacket.h
blob: 26d03f49887c0dccc71cd7b8efe3081c93e64d14 (plain)
1
2
3
4
5
6
7
8
#pragma once

struct MousePacket {
    int dx { 0 };
    int dy { 0 };
    int dz { 0 };
    byte buttons { 0 };
};