摘要: #include <iostream> #include <string> #include <vector> using namespace std; //棋子颜色 enum PieceColor { BLACK, WHITE }; //棋子位置 struct PiecePos { int x; 阅读全文
posted @ 2021-10-19 21:58 yasai 阅读(40) 评论(0) 推荐(0) 编辑