mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-13 04:09:09 +00:00
1
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user