代码格式化和优化:统一换行符格式,优化代码结构

This commit is contained in:
2025-07-23 10:09:02 +08:00
parent fbe4f5273c
commit cb81105809
13 changed files with 57 additions and 6 deletions
+10
View File
@@ -1,3 +1,13 @@
/**
* @file game_mode.c
* @brief 五子棋游戏框架源文件
* @note 本文件定义了五子棋游戏的四种主要模式:
* 1. AI对战模式
* 2. 双人对战模式
* 3. 网络对战模式
* 4. 复盘模式
*/
#include "game_mode.h"
#include "init_board.h"
#include "gobang.h"