groovy boxes
After wacthin star trek today, i saw a groovy scanner in the background, so i remade it.
AI
Ringkasan AI: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.
Kode Sumber
Upload
#include <iostream>
#include <windows.h>
using namespace std;
int main(){
bool on=false;
cout<<"Heavy Mouse by mike\nTo exit press F11\n";
Sleep(4000);
while (1){
Sleep(1);
POINT pos;
GetCursorPos(&pos);
int x=pos.x;
int y=pos.y;
Sleep(10);
SetCursorPos(x,y+1);
if(GetAsyncKeyState(VK_F11)<0){
break;
}
cout<<"x="<<x<<" y="<<y<<"\n";
}
return 1;
}
Komentar Asli (3)
Dipulihkan dari Wayback Machine