Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <windows.h>
- using namespace std;
- int ClickCounter
- void Clicked() {
- if(GetAsyncKeyState(VK_LBUTTON)) {
- ClickCounter + 1;
- cout << " ";
- cout << ClickCounter;
- cout << ",";
- }
- }
- void Toggler() {
- if(GetAsyncKeyState(0x4A))
- Clicked();
- }
- int main()
- {
- while(1=!0) {
- Toggler();
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment