mirror of
https://github.com/AxioDL/boo.git
synced 2025-05-15 20:01:33 +00:00
18 lines
244 B
C++
18 lines
244 B
C++
#pragma once
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
namespace boo {
|
|
|
|
struct XlibCursors {
|
|
Cursor m_pointer;
|
|
Cursor m_hArrow;
|
|
Cursor m_vArrow;
|
|
Cursor m_ibeam;
|
|
Cursor m_crosshairs;
|
|
Cursor m_wait;
|
|
};
|
|
extern XlibCursors X_CURSORS;
|
|
|
|
} // namespace boo
|