19.05.2015, 05:11
No.
You forgot a ';' and a '=' in your code.
new ARRAYNAME[][] = //This equal sign is important
{
//all your data here
}; //END with a ;
Code:
new myarray[][14] = { {1,2,3,...},{1,2,3,...},{1,2,3,...},{1,2,3,...},{1,2,3,...},... //fill your information };
new ARRAYNAME[][] = //This equal sign is important
{
//all your data here
}; //END with a ;