26.05.2011, 08:51
You can't have 3 dimensional arrays.
You will have to do this like this
You will have to do this like this
pawn Код:
enum Test
{
MyArray0,
MyArray1,
MyArray2,
MyArray3,
MyArray4,
};
new MyTest[20][Test];
main()
{
MyTest[0][MyArray3] = 2;
}