12 lines
163 B
C
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;
|
|
}; |