mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-01-07 09:43:40 +08:00
32 lines
665 B
C++
32 lines
665 B
C++
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================//
|
|
|
|
#ifndef MOUSECODE_H
|
|
#define MOUSECODE_H
|
|
|
|
#include <vgui/VGUI.h>
|
|
|
|
namespace vgui
|
|
{
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Purpose: names mouse button inputs
|
|
//-----------------------------------------------------------------------------
|
|
enum MouseCode
|
|
{
|
|
MOUSE_LEFT = 0,
|
|
MOUSE_RIGHT,
|
|
MOUSE_MIDDLE,
|
|
MOUSE_4,
|
|
MOUSE_5,
|
|
MOUSE_LAST,
|
|
};
|
|
|
|
} // namespace vgui
|
|
|
|
#endif // MOUSECODE_H
|