#ifndef _KGE_CURSOR_H_ #define _KGE_CURSOR_H_ #include struct Cursor { uint32_t x; uint32_t y; }; Cursor CursorFromXY(uint32_t x, uint32_t y); #endif