summaryrefslogtreecommitdiff
path: root/windows/keybuddy2/src/mousecontrol.h
blob: 1b345509b33ae4a5e9754acf00e7d96f2d653fc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef _KeyBuddy2_mousecontrol_h_
#define _KeyBuddy2_mousecontrol_h_

#include "includes.h"

class mouseController{
	
public:
	static int vx,vy; // mouse velocity
	
	static byte mouseKeys[9];
	static bool mouseButtonStates[3];
	static wchar mouseSymbols[9];
	
	static void mouseEvent(DWORD vkCode, bool isReleased);
	
};






#endif