This commit is contained in:
2026-06-28 11:37:58 -05:00
commit 2611a273ca
4 changed files with 92 additions and 0 deletions

12
packet.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef AMIPATHY_PACKET_H
#define AMIPATHY_PACKET_H
struct packet {
uint8_t magic;
uint16_t x, y;
uint8_t mouse0;
uint8_t mouse1;
uint16_t sum;
};
#endif //AMIPATHY_PACKET_H