diff options
Diffstat (limited to 'public/panorama/input/mousecodes.h')
| -rw-r--r-- | public/panorama/input/mousecodes.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/public/panorama/input/mousecodes.h b/public/panorama/input/mousecodes.h new file mode 100644 index 0000000..866b57f --- /dev/null +++ b/public/panorama/input/mousecodes.h @@ -0,0 +1,29 @@ +//=========== 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
\ No newline at end of file |