![]() |
#2
东海一鱼2009-10-16 14:08
|

typedef struct tagShape //方块的形状
{
int iId; //方块编号
int iShape[4][4];
}T_Shape;
T_Shape tShape[7];
tShape[0].iId = 0;
tShape[0].iShape[4][4] = {0,1,2,3,4};
{
int iId; //方块编号
int iShape[4][4];
}T_Shape;
T_Shape tShape[7];
tShape[0].iId = 0;
tShape[0].iShape[4][4] = {0,1,2,3,4};
请问哪里出错了????