kge/Cursor.h

18 lines
170 B
C
Raw Normal View History

2023-10-05 00:38:04 +00:00
#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