Another batch of these.

I think I need to look into adding a feature soon.
Either that, or take a minor break.
This commit is contained in:
Jason Felds
2011-03-14 21:42:07 -04:00
parent 0979f233e5
commit d1272b001c
8 changed files with 42 additions and 33 deletions
+4 -1
View File
@@ -24,7 +24,7 @@ enum InputEventType
struct InputEvent
{
InputEvent() { type=IET_FIRST_PRESS; };
InputEvent(): type(IET_FIRST_PRESS) {}
DeviceInput di;
InputEventType type;
@@ -84,6 +84,9 @@ private:
vector<InputEvent> queue;
RageMutex *queuemutex;
MouseCoordinates m_MouseCoords;
InputFilter(const InputFilter& rhs);
InputFilter& operator=(const InputFilter& rhs);
};
extern InputFilter* INPUTFILTER; // global and accessable from anywhere in our program