Files
CardGame/ProjectStructure.md
2024-06-21 03:16:33 +08:00

769 B

  • .git Git related
  • .idea JetBrains IDE (Rider) related
  • .vs Visual Studio related
  • CardGame
    • x64 (or any other architecture) Files generated while compiling
    • CardGame.cpp 主代码文件,包含 main 函数(程序入口)
    • CardGame.vcxproj.* VC++ project file
    • FuncRef.h 用于在 CardGame.cpp 的主函数下调用另外两个 cpp 中的函数
    • GamePlay1.cpp 玩法 1
    • GamePlay2.cpp 玩法 2
  • CardGame.Test.GamePlay* 测试用代码
  • include 外部头文件
    • Functions.h 部分函数的定义
    • SqList.h 顺序表
    • SqQueue.h 顺序队列
    • SqStack.h 顺序栈
  • x64 (or any other architecture) Binary files and debugging info
  • CardGame.sln Solution file