Skip to content

Instantly share code, notes, and snippets.

@burdzwastaken
Created November 26, 2017 02:49
Show Gist options
  • Save burdzwastaken/897eaa4bcaab373ac70339c73c7117ba to your computer and use it in GitHub Desktop.
Save burdzwastaken/897eaa4bcaab373ac70339c73c7117ba to your computer and use it in GitHub Desktop.
#include <Windows.h>
int main()
{
for (;;)
if (GetAsyncKeyState(65))
{
mouse_event(2, 0, 0, 0, 1);
mouse_event(4, 0, 0, 0, 1);
Sleep(1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment