Files
pti-ledy/structs.h
T
2026-01-27 17:50:50 +01:00

12 lines
163 B
C

struct Cursor {
unsigned short x;
unsigned short y;
Cursor() : x(0), y(0) {}
};
struct Pixel {
unsigned short x;
unsigned short y;
uint32_t color;
};