04.11.2012, 05:01
@MadeMan
that always been a question of mine :X e.g.
AND
and ..
i use like :
that would work i guess ?
and if it is in the following way it wouldn't, for sure right? :
and use like:
^ or not ?
i am lately very confused regarding them..
that always been a question of mine :X e.g.
pawn Код:
enum tempinfo{
variable1,variable2,
}
new Array0[2][tempinfo];
pawn Код:
enum pinfo{
variable1,variable2,
}
new Array1[2][pinfo];
i use like :
pawn Код:
Array1[0][variable1] = somevalue;//variable 1 belong to enum 'tempinfo'
Array2[0][variable1] = somevalue;//variable 1 belong to enum 'pinfo'
and if it is in the following way it wouldn't, for sure right? :
pawn Код:
enum info{
variable1,variable2,
}
new Array0[2][info];
//and
new Array1[2][info];
pawn Код:
Array0[2][variable1] = somevalue;//variable 1 belong to enum 'info'
Array1[2][variable1] = somevalue;//this variable also belong to enum 'info'
i am lately very confused regarding them..