mirror of
https://github.com/0TheSpy/Seaside.git
synced 2025-01-07 10:03:29 +08:00
40 lines
496 B
C++
40 lines
496 B
C++
#ifndef CURSOR_H
|
|
#define CURSOR_H
|
|
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
#include "VGUI.h"
|
|
|
|
namespace vgui
|
|
{
|
|
|
|
enum CursorCode
|
|
{
|
|
dc_user,
|
|
dc_none,
|
|
dc_arrow,
|
|
dc_ibeam,
|
|
dc_hourglass,
|
|
dc_waitarrow,
|
|
dc_crosshair,
|
|
dc_up,
|
|
dc_sizenwse,
|
|
dc_sizenesw,
|
|
dc_sizewe,
|
|
dc_sizens,
|
|
dc_sizeall,
|
|
dc_no,
|
|
dc_hand,
|
|
dc_blank,
|
|
dc_last,
|
|
dc_alwaysvisible_push,
|
|
dc_alwaysvisible_pop,
|
|
};
|
|
|
|
typedef unsigned long HCursor;
|
|
|
|
}
|
|
|
|
#endif |