Advertisement
ASP_Volume3 Graphics #45274

groovy boxes

After wacthin star trek today, i saw a groovy scanner in the background, so i remade it.

AI

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.

소스 코드
original-source
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;
}
원본 댓글 (3)
Wayback Machine에서 복구됨