04.04.2013, 21:53
(
Последний раз редактировалось trollkemada; 04.04.2013 в 22:05.
Причина: Change in the title
)
Is this any way of make this working?
Код:
new test[10] = { 1, ... }; // Works :D
enum testEnum {
name[128],
surename[128],
};
new test2[10][testEnum] = { {"John", "Smith"} , ... } // Works :D
new test3[2][10][testEnum] = {
{
{
{"John", "Smith"},
...
},
{
{"Peter", "something"},
...
}
}
// This last one, does not work (compile error) :'(


