Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-01-11 18:59:17 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-01-11 18:59:17 +0400
commit5fc2fe9fad1a99d19ffaf4220fe139f8d324ba59 (patch)
treecd77330ac3647380ffb2753e9d21d685984f19e8 /source/gameengine/GameLogic
parent50650e28ea5641b200727fcbe14de83fa10e2c49 (diff)
Code Cleanup: move MOUSEX/Y to BGE, describe INBETWEEN_MOUSEMOVE
Diffstat (limited to 'source/gameengine/GameLogic')
-rw-r--r--source/gameengine/GameLogic/SCA_IInputDevice.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/gameengine/GameLogic/SCA_IInputDevice.h b/source/gameengine/GameLogic/SCA_IInputDevice.h
index 47fdd45c78b..ce7c8650ee5 100644
--- a/source/gameengine/GameLogic/SCA_IInputDevice.h
+++ b/source/gameengine/GameLogic/SCA_IInputDevice.h
@@ -62,6 +62,10 @@ public:
int m_eventval;
};
+/* Originally from wm_event_types.h, now only used by GameEngine */
+#define MOUSEX MOUSEMOVE
+#define MOUSEY ACTIONMOUSE
+
class SCA_IInputDevice
{