#5

Quote:
Originally Posted by Jonni8
Ok, so if i understand that right, its like this:

Код:
enum TEST_ARRAY
{
  TEST_ARRAY_1 = 1,
  TEST_ARRAY_2 = 2
}
is the same thing as
Код:
new gTEST_ARRAY_1 = 1;
new gTEST_ARRAY_2 = 2;
??
No.

This is
pawn Код:
enum pInfo
{
  Text1 = 1,
  Text2 = 2
}
new Player[MAX_PLAYERS][pInfo];
Same as this
pawn Код:
new Text1[MAX_PLAYERS] = 1;
new Text2[MAX_PLAYERS] = 2;
Reply


Messages In This Thread
enum - by Jonni8 - 13.05.2010, 19:03
Re: enum - by ViruZZzZ_ChiLLL - 13.05.2010, 19:05
Re: enum - by juice.j - 13.05.2010, 19:07
Re: enum - by Jonni8 - 13.05.2010, 19:17
Re: enum - by Killa_ - 13.05.2010, 19:23
Re: enum - by Jonni8 - 13.05.2010, 19:28
Re: enum - by cAMo - 13.05.2010, 19:37
Re: enum - by Jonni8 - 13.05.2010, 19:47
Re: enum - by juice.j - 13.05.2010, 20:10
Re: enum - by cAMo - 13.05.2010, 20:50

Forum Jump:


Users browsing this thread: 1 Guest(s)