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

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