13 lines
552 B
Markdown
13 lines
552 B
Markdown
- **CardGame**
|
|
- .vs _Visual Studio related_
|
|
- CardGame _Files generated while compiling_
|
|
- **include** _外部头文件_
|
|
- x64 (or any other architecture) _Binary file and debugging info_
|
|
- **CardGame.cpp** _主代码文件,包含 main 函数(程序入口)_
|
|
- CardGame.sln _Solution file_
|
|
- CardGame.vcxproj.\* _VC++ project file_
|
|
- FuncRef.h _用于在 CardGame.cpp 的主函数下调用另外两个 cpp 中的函数_
|
|
- **GamePlay1.cpp** _玩法 1_
|
|
- **GamePlay2.cpp** _玩法 2_
|
|
- **Functions.h** _部分函数的定义_
|