13.05.2010, 19:23
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
}
Код:
new gTEST_ARRAY_1 = 1; new gTEST_ARRAY_2 = 2; |
This is
pawn Код:
enum pInfo
{
Text1 = 1,
Text2 = 2
}
new Player[MAX_PLAYERS][pInfo];
pawn Код:
new Text1[MAX_PLAYERS] = 1;
new Text2[MAX_PLAYERS] = 2;

