Seaside/SpyCustom/sdk/Cursor.h
2021-06-16 18:45:17 +03:00

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