Index: Source/platform/PlatformEvent.h |
diff --git a/Source/platform/PlatformEvent.h b/Source/platform/PlatformEvent.h |
index f2000ad49a95bfbf1fd4d21e3755408511a76618..c47f2a6702e9d718f0b9a8697745f0a41c59297f 100644 |
--- a/Source/platform/PlatformEvent.h |
+++ b/Source/platform/PlatformEvent.h |
@@ -77,6 +77,10 @@ public: |
CtrlKey = 1 << 1, |
MetaKey = 1 << 2, |
ShiftKey = 1 << 3, |
+ |
+ LeftButtonDown = 1 << 6, |
+ MiddleButtonDown = 1 << 7, |
+ RightButtonDown = 1 << 8, |
}; |
Type type() const { return static_cast<Type>(m_type); } |