kge/Cursor.h

18 lines
170 B
C++

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