├── Readme.md ├── _config.yml ├── exe └── GhostMan.exe └── src ├── GhostMan.sln └── GhostMan ├── ACOStatic.cpp ├── ACOStatic.h ├── AStarStatic.cpp ├── AStarStatic.h ├── BFSStatic.cpp ├── BFSStatic.h ├── CloseStatic.cpp ├── CloseStatic.h ├── DFSStatic.cpp ├── DFSStatic.h ├── DynamicStatic.cpp ├── DynamicStatic.h ├── ExecStatic.cpp ├── ExecStatic.h ├── GhostMan.aps ├── GhostMan.cpp ├── GhostMan.h ├── GhostMan.rc ├── GhostMan.vcxproj ├── GhostMan.vcxproj.filters ├── GhostMan.vcxproj.user ├── GhostManDlg.cpp ├── GhostManDlg.h ├── IDAStarStatic.cpp ├── IDAStarStatic.h ├── InitStatic.cpp ├── InitStatic.h ├── MinStatic.cpp ├── MinStatic.h ├── MyStatic.cpp ├── MyStatic.h ├── MyText.cpp ├── MyText.h ├── ReadMe.txt ├── Release ├── GhostMan.Build.CppClean.log └── GhostMan.log ├── STStatic.cpp ├── STStatic.h ├── SetEndStatic.cpp ├── SetEndStatic.h ├── SetStartStatic.cpp ├── SetStartStatic.h ├── StepStatic.cpp ├── StepStatic.h ├── res ├── AStar_hover.bmp ├── Astar_normal.bmp ├── GhostMan.rc2 ├── bfs_hover.bmp ├── bfs_normal.bmp ├── bg_global.bmp ├── close_down.bmp ├── close_hover.bmp ├── close_normal.bmp ├── dfs_hover.bmp ├── dfs_normal.bmp ├── dynamic_down.bmp ├── dynamic_hover.bmp ├── dynamic_normal.bmp ├── end_down.bmp ├── end_hover.bmp ├── end_normal.bmp ├── exec_down.bmp ├── exec_hover.bmp ├── exec_normal.bmp ├── header.bmp ├── hover.bmp ├── idastar_hover.bmp ├── idastar_normal.bmp ├── init_down.bmp ├── init_hover.bmp ├── init_normal.bmp ├── kungfu-panda_01.bmp ├── kungfu-panda_02.bmp ├── kungfu-panda_03.bmp ├── kungfu-panda_04.bmp ├── kungfu-panda_05.bmp ├── kungfu-panda_06.bmp ├── kungfu-panda_07.bmp ├── kungfu-panda_08.bmp ├── kungfu-panda_09.bmp ├── logo.bmp ├── logo.ico ├── logo_main.bmp ├── map_introduction.bmp ├── max_down.bmp ├── max_hover.bmp ├── max_normal.bmp ├── min_down.bmp ├── min_hover.bmp ├── min_normal.bmp ├── normal.bmp ├── start_down.bmp ├── start_hover.bmp ├── start_normal.bmp ├── static_down.bmp ├── static_hover.bmp ├── static_normal.bmp ├── step_down.bmp ├── step_hover.bmp └── step_normal.bmp ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/Readme.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/_config.yml -------------------------------------------------------------------------------- /exe/GhostMan.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/exe/GhostMan.exe -------------------------------------------------------------------------------- /src/GhostMan.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan.sln -------------------------------------------------------------------------------- /src/GhostMan/ACOStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/ACOStatic.cpp -------------------------------------------------------------------------------- /src/GhostMan/ACOStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/ACOStatic.h -------------------------------------------------------------------------------- /src/GhostMan/AStarStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/AStarStatic.cpp -------------------------------------------------------------------------------- /src/GhostMan/AStarStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/AStarStatic.h -------------------------------------------------------------------------------- /src/GhostMan/BFSStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/BFSStatic.cpp -------------------------------------------------------------------------------- /src/GhostMan/BFSStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/BFSStatic.h -------------------------------------------------------------------------------- /src/GhostMan/CloseStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/CloseStatic.cpp -------------------------------------------------------------------------------- /src/GhostMan/CloseStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/CloseStatic.h -------------------------------------------------------------------------------- /src/GhostMan/DFSStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/DFSStatic.cpp -------------------------------------------------------------------------------- /src/GhostMan/DFSStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/DFSStatic.h -------------------------------------------------------------------------------- /src/GhostMan/DynamicStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/DynamicStatic.cpp -------------------------------------------------------------------------------- /src/GhostMan/DynamicStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/DynamicStatic.h -------------------------------------------------------------------------------- /src/GhostMan/ExecStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/ExecStatic.cpp -------------------------------------------------------------------------------- /src/GhostMan/ExecStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/ExecStatic.h -------------------------------------------------------------------------------- /src/GhostMan/GhostMan.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/GhostMan.aps -------------------------------------------------------------------------------- /src/GhostMan/GhostMan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/GhostMan.cpp -------------------------------------------------------------------------------- /src/GhostMan/GhostMan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/GhostMan.h -------------------------------------------------------------------------------- /src/GhostMan/GhostMan.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/GhostMan.rc -------------------------------------------------------------------------------- /src/GhostMan/GhostMan.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/GhostMan.vcxproj -------------------------------------------------------------------------------- /src/GhostMan/GhostMan.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/GhostMan.vcxproj.filters -------------------------------------------------------------------------------- /src/GhostMan/GhostMan.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/GhostMan.vcxproj.user -------------------------------------------------------------------------------- /src/GhostMan/GhostManDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/GhostManDlg.cpp -------------------------------------------------------------------------------- /src/GhostMan/GhostManDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/GhostManDlg.h -------------------------------------------------------------------------------- /src/GhostMan/IDAStarStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/IDAStarStatic.cpp -------------------------------------------------------------------------------- /src/GhostMan/IDAStarStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/IDAStarStatic.h -------------------------------------------------------------------------------- /src/GhostMan/InitStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/InitStatic.cpp -------------------------------------------------------------------------------- /src/GhostMan/InitStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/InitStatic.h -------------------------------------------------------------------------------- /src/GhostMan/MinStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/MinStatic.cpp -------------------------------------------------------------------------------- /src/GhostMan/MinStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/MinStatic.h -------------------------------------------------------------------------------- /src/GhostMan/MyStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/MyStatic.cpp -------------------------------------------------------------------------------- /src/GhostMan/MyStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/MyStatic.h -------------------------------------------------------------------------------- /src/GhostMan/MyText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/MyText.cpp -------------------------------------------------------------------------------- /src/GhostMan/MyText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/MyText.h -------------------------------------------------------------------------------- /src/GhostMan/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/ReadMe.txt -------------------------------------------------------------------------------- /src/GhostMan/Release/GhostMan.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/Release/GhostMan.Build.CppClean.log -------------------------------------------------------------------------------- /src/GhostMan/Release/GhostMan.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/GhostMan/STStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/STStatic.cpp -------------------------------------------------------------------------------- /src/GhostMan/STStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/STStatic.h -------------------------------------------------------------------------------- /src/GhostMan/SetEndStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/SetEndStatic.cpp -------------------------------------------------------------------------------- /src/GhostMan/SetEndStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/SetEndStatic.h -------------------------------------------------------------------------------- /src/GhostMan/SetStartStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/SetStartStatic.cpp -------------------------------------------------------------------------------- /src/GhostMan/SetStartStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/SetStartStatic.h -------------------------------------------------------------------------------- /src/GhostMan/StepStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/StepStatic.cpp -------------------------------------------------------------------------------- /src/GhostMan/StepStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/StepStatic.h -------------------------------------------------------------------------------- /src/GhostMan/res/AStar_hover.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/AStar_hover.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/Astar_normal.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/Astar_normal.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/GhostMan.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/GhostMan.rc2 -------------------------------------------------------------------------------- /src/GhostMan/res/bfs_hover.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/bfs_hover.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/bfs_normal.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/bfs_normal.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/bg_global.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/bg_global.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/close_down.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/close_down.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/close_hover.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/close_hover.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/close_normal.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/close_normal.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/dfs_hover.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/dfs_hover.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/dfs_normal.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/dfs_normal.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/dynamic_down.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/dynamic_down.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/dynamic_hover.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/dynamic_hover.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/dynamic_normal.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/dynamic_normal.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/end_down.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/end_down.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/end_hover.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/end_hover.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/end_normal.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/end_normal.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/exec_down.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/exec_down.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/exec_hover.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/exec_hover.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/exec_normal.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/exec_normal.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/header.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/hover.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/hover.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/idastar_hover.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/idastar_hover.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/idastar_normal.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/idastar_normal.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/init_down.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/init_down.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/init_hover.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/init_hover.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/init_normal.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/init_normal.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/kungfu-panda_01.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/kungfu-panda_01.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/kungfu-panda_02.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/kungfu-panda_02.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/kungfu-panda_03.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/kungfu-panda_03.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/kungfu-panda_04.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/kungfu-panda_04.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/kungfu-panda_05.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/kungfu-panda_05.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/kungfu-panda_06.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/kungfu-panda_06.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/kungfu-panda_07.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/kungfu-panda_07.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/kungfu-panda_08.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/kungfu-panda_08.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/kungfu-panda_09.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/kungfu-panda_09.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/logo.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/logo.ico -------------------------------------------------------------------------------- /src/GhostMan/res/logo_main.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/logo_main.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/map_introduction.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/map_introduction.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/max_down.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/max_down.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/max_hover.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/max_hover.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/max_normal.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/max_normal.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/min_down.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/min_down.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/min_hover.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/min_hover.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/min_normal.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/min_normal.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/normal.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/normal.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/start_down.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/start_down.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/start_hover.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/start_hover.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/start_normal.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/start_normal.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/static_down.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/static_down.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/static_hover.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/static_hover.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/static_normal.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/static_normal.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/step_down.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/step_down.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/step_hover.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/step_hover.bmp -------------------------------------------------------------------------------- /src/GhostMan/res/step_normal.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/res/step_normal.bmp -------------------------------------------------------------------------------- /src/GhostMan/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/resource.h -------------------------------------------------------------------------------- /src/GhostMan/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/stdafx.cpp -------------------------------------------------------------------------------- /src/GhostMan/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/stdafx.h -------------------------------------------------------------------------------- /src/GhostMan/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIGBALLON/Ghost/HEAD/src/GhostMan/targetver.h --------------------------------------------------------------------------------