thunderbrew/src/cursor/Cursor.hpp
2025-08-02 01:41:58 +04:00

14 lines
266 B
C++

#ifndef CURSOR_CURSOR_HPP
#define CURSOR_CURSOR_HPP
#define CURSOR_IMAGE_SIZE (32 * 32)
#define CURSOR_IMAGE_BYTES (CURSOR_IMAGE_SIZE * 4)
#include "cursor/Types.hpp"
void CursorInitialize();
void CursorSetMode(CURSORMODE mode);
void CursorResetCursor();
#endif