You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
449 B
29 lines
449 B
5 years ago
|
//=========== Copyright Valve Corporation, All rights reserved. ===============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//=============================================================================//
|
||
|
|
||
|
#ifndef MOUSECODES_H
|
||
|
#define MOUSECODES_H
|
||
|
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
namespace panorama
|
||
|
{
|
||
|
|
||
|
enum MouseCode
|
||
|
{
|
||
|
MOUSE_INVALID = -1,
|
||
|
MOUSE_LEFT = 0,
|
||
|
MOUSE_RIGHT,
|
||
|
MOUSE_MIDDLE,
|
||
|
MOUSE_4,
|
||
|
MOUSE_5,
|
||
|
MOUSE_LAST,
|
||
|
};
|
||
|
|
||
|
} // namespace panorama
|
||
|
|
||
|
#endif // MOUSECODES_H
|