Files
pti-ledy/cursor.h
T

8 lines
103 B
C

struct Cursor {
unsigned short x;
unsigned short y;
Cursor() : x(0), y(0) {}
};
Cursor cursor1;