summaryrefslogtreecommitdiffstats
path: root/MatchBloxEngine/MatchBloxEngine/MessageQueue.h
diff options
context:
space:
mode:
Diffstat (limited to 'MatchBloxEngine/MatchBloxEngine/MessageQueue.h')
-rw-r--r--MatchBloxEngine/MatchBloxEngine/MessageQueue.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/MatchBloxEngine/MatchBloxEngine/MessageQueue.h b/MatchBloxEngine/MatchBloxEngine/MessageQueue.h
new file mode 100644
index 0000000..0edc388
--- /dev/null
+++ b/MatchBloxEngine/MatchBloxEngine/MessageQueue.h
@@ -0,0 +1,19 @@
+#include <queue>
+
+typedef enum msgType
+{
+ MOUSE_MOVE,
+ MOUSE_PRESS,
+ KEY_PRESS,
+ SPECIAL_KEY,
+ WII_CURSOR_MOVE,
+ WII_BUTTON_PRESS
+};
+
+typedef struct message
+{
+ msgType m_MessageType;
+ int parm1, parm2, parm3, parm4;
+} msgStruct;
+
+typedef std::queue<msgStruct> msgQueue;