少年修仙传服务端代码子仓库
hxp
2018-08-28 c61e4e0d4e26a24bfee2d18e81d285a7ebde4cc7
提交 | 用户 | age
ed7b73 1 // A5 04 玩家战盟科技等级 #tagMCPlayerTechInfo
H 2
3 struct    tagMCPlayerTech
4 {
5     WORD        TechID;    // 科技ID
6     WORD        TechLV;    // 特技等级
7 };
8
9 struct    tagMCPlayerTechInfo
10
11 {
12     tagHead        Head;
13     BYTE        TechCnt;            // 科技个数
14     tagMCPlayerTech    TechInfoList[TechCnt];    // 科技信息列表
15 };
16