当前位置: 首页 > 图文教程 > Flash动画 > Flash动画制作 > Flash MX 编程深层次应用-网络连线游戏(8)
Flash动画制作 中的 Flash MX 编程深层次应用-网络连线游戏(8)
}
// 再检查列连成四子
count = 0;
i = row;
while (_root.chess[i][col] == val and i<=5) {
count++;
i++;
}
if (count>=4) {
return true;
}
// 检查左高斜线
count = 0;
i = row;
j = col;
while (_root.chess[i][j] == val and i>=0 and j>=0) {
&n
评论 (0) All