├── .gitattributes ├── .gitignore ├── 1.JPG ├── 2.JPG ├── 3.JPG ├── 4.JPG ├── README.md ├── Release └── plane.exe ├── consoleGame ├── Game.cpp ├── Game.h ├── classDef.cpp ├── 控制台游戏.vcxproj ├── 控制台游戏.vcxproj.filters └── 控制台游戏.vcxproj.user └── 控制台游戏.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHINA-JIGE/Hit-The-Plane-2D/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHINA-JIGE/Hit-The-Plane-2D/HEAD/.gitignore -------------------------------------------------------------------------------- /1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHINA-JIGE/Hit-The-Plane-2D/HEAD/1.JPG -------------------------------------------------------------------------------- /2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHINA-JIGE/Hit-The-Plane-2D/HEAD/2.JPG -------------------------------------------------------------------------------- /3.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHINA-JIGE/Hit-The-Plane-2D/HEAD/3.JPG -------------------------------------------------------------------------------- /4.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHINA-JIGE/Hit-The-Plane-2D/HEAD/4.JPG -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHINA-JIGE/Hit-The-Plane-2D/HEAD/README.md -------------------------------------------------------------------------------- /Release/plane.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHINA-JIGE/Hit-The-Plane-2D/HEAD/Release/plane.exe -------------------------------------------------------------------------------- /consoleGame/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHINA-JIGE/Hit-The-Plane-2D/HEAD/consoleGame/Game.cpp -------------------------------------------------------------------------------- /consoleGame/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHINA-JIGE/Hit-The-Plane-2D/HEAD/consoleGame/Game.h -------------------------------------------------------------------------------- /consoleGame/classDef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHINA-JIGE/Hit-The-Plane-2D/HEAD/consoleGame/classDef.cpp -------------------------------------------------------------------------------- /consoleGame/控制台游戏.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHINA-JIGE/Hit-The-Plane-2D/HEAD/consoleGame/控制台游戏.vcxproj -------------------------------------------------------------------------------- /consoleGame/控制台游戏.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHINA-JIGE/Hit-The-Plane-2D/HEAD/consoleGame/控制台游戏.vcxproj.filters -------------------------------------------------------------------------------- /consoleGame/控制台游戏.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHINA-JIGE/Hit-The-Plane-2D/HEAD/consoleGame/控制台游戏.vcxproj.user -------------------------------------------------------------------------------- /控制台游戏.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHINA-JIGE/Hit-The-Plane-2D/HEAD/控制台游戏.sln --------------------------------------------------------------------------------