Project File Organization
Last updated: 2026/2/9 17:44
master
│ AGENTS.MD AI Generation Guide (Fun Version)
│ CONTRIBUTING.md Contribution Guide (Actually Update Plan)
│ installer.iss Installer Source Code
│ LICENSE Open Source License
│ Makefile makefile
│ README.md Project Introduction
│
├─.vscode
│ settings.json vscode settings
│
├─docs Documentation Folder
│ 文件组织.md <-Current file
│ 编译前版本检查.md
│ 编译方式.md
│ makefileHelper.md Help text about makefile
│
├─include Header Files Folder
│ │ debug.hpp
│ │ global.hpp
│ │ globalDevelopmentControl.hpp Global Development Control
│ │ window_manager.hpp
│ │
│ ├─functions
│ │ audioPlay.hpp
│ │ files.hpp
│ │ others.hpp
│ │ randnum.hpp
│ │
│ ├─hook
│ │ keyboard_hook.hpp
│ │ mouse_hook.hpp
│ │
│ └─windows
│ about.hpp
│ main_window.hpp
│ setting.hpp
│
├─resource Resource Files
│ │ background.png Default Background
│ │ icon-org.png Software Icon
│ │ icon.png Software Icon with Transparent Background
│ │ LICENSE Resource License
│ │ resources.hpp RC File Header
│ │ resources.rc RC File
│ │
│ ├─audios Audio Files
│ │ 74.mp3 MP3 Original File
│ │ 74.wav Actual WAV File Used
│ │ 77.mp3
│ │ 77.wav
│ │ 78.mp3
│ │ 78.wav
│ │ 84.mp3
│ │ 84.wav
│ │
│ └─ico Icons
│ 64.ico
│
├─src Source Code
│ │ debug.cpp Debugging and Logging
│ │ global.cpp Global Variables
│ │ main.cpp Main Program
│ │
│ ├─functions Functional Functions Folder
│ │ audioPlay.cpp Audio Playback
│ │ files.cpp File Operations
│ │ others.cpp Other Functions
│ │ randnum.cpp Random Numbers
│ │
│ ├─hook Hooks
│ │ keyboard_hook.cpp Keyboard Hook
│ │ mouse_hook.cpp Mouse Hook
│ │
│ └─windows Windows
│ about.cpp About
│ main_window.cpp Main Window
│ setting.cpp Settings
│
└─test Test Folder