Initial commit: MouseHighlighter project

A lightweight Windows mouse highlight overlay tool with halo circle
and click ripple animations, built with C++17 and Win32 API.
This commit is contained in:
2026-05-27 16:46:07 +08:00
commit 326306d76a
12 changed files with 3578 additions and 0 deletions

53
.gitignore vendored Normal file
View File

@@ -0,0 +1,53 @@
# Build output
build/
Build/
Debug/
Release/
x64/
Win32/
out/
# Visual Studio
.vs/
*.sln
*.vcxproj
*.vcxproj.filters
*.vcxproj.user
*.suo
*.db
*.opendb
# CMake
CMakeFiles/
CMakeCache.txt
cmake_install.cmake
Makefile
compile_commands.json
# IDE
.vscode/
*.code-workspace
.idea/
*.swp
*.swo
# Build artifacts
*.obj
*.o
*.exe
*.dll
*.lib
*.a
*.so
*.pdb
*.ilk
*.exp
# Configuration & logs (user-specific)
config.ini
*.log
# OS files
.DS_Store
Thumbs.db
desktop.ini