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

struct MousePacket {
    int dx { 0 };
    int dy { 0 };
    int dz { 0 };
    unsigned char buttons { 0 };
};