mirror of
https://github.com/AxioDL/boo.git
synced 2025-06-06 14:43:33 +00:00
21 lines
240 B
C++
21 lines
240 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;
|
|
|
|
}
|
|
|