Creating enums
#4

Quote:
Originally Posted by EtayJ
Посмотреть сообщение
Thank you.
The enum itsels does not contain variables but when I do something like:
PHP код:
new playerInfo[enum
Then playerInfo will contain a set of variables as we defined in the enum, am I right?
Should be:
PHP код:
new playerInfo[MAX_PLAYERS][enumname]; 
and a simple tutorial of a simple enum:
PHP код:
enum enumname
{
   
things// don't forget these commas , if it's the last one don't put a comma
   
things
}
new 
playerInfo[MAX_PLAYERS][enumname]; 
Reply


Messages In This Thread
Creating enums - by EtayJ - 13.10.2016, 14:34
Re: Creating enums - by Vince - 13.10.2016, 14:41
Re: Creating enums - by EtayJ - 13.10.2016, 14:58
Re: Creating enums - by Gotham - 13.10.2016, 15:06
Re: Creating enums - by AmigaBlizzard - 13.10.2016, 15:56
Re: Creating enums - by EtayJ - 14.10.2016, 11:37

Forum Jump:


Users browsing this thread: 1 Guest(s)