10.11.2012, 21:43
It is, didnt noticed it in the other topic
You can only use one dimension within enum because an enum is just a list of constant variables!
The easist way would be to create a new array
You can only use one dimension within enum because an enum is just a list of constant variables!
The easist way would be to create a new array
pawn Code:
#define MAX_CONTACTS (15)
enum cInfo {
ContactNumber,
ContactName[30]
};
new ContactInfo[sizeof PlayerInfo][MAX_CONTACTS][cInfo];