mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2026-01-30 19:42:51 +03:00
14 lines
266 B
C++
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
|