20.01.2013, 14:16
Quote:
But why do I need to use Info while the enum is called PlayerInfo? that's what is bugging me
|
pawn Код:
enum PlayerInfo
{
isMuted,
isJailed,
}
new Info[MAX_PLAYERS][PlayerInfo];
pawn Код:
new Info[MAX_PLAYERS][PlayerInfo];
You could do this if you want to use PlayerInfo and not Info :
pawn Код:
enum Info
{
isMuted,
isJailed,
}
new PlayerInfo[MAX_PLAYERS][Info];