08.03.2014, 16:08
I'm going to make a suggestion off the top instead of doing this
Float:I_COORDS[ 3 ]
Just declare each coord independently whats the point of using a enum if your not going to use it ?
That will simplify your data and looks a lot better.
@Misiur - It is valid but ugly.
Float:I_COORDS[ 3 ]
Just declare each coord independently whats the point of using a enum if your not going to use it ?
pawn Код:
enum IntEnt { Float:I_COORDX, Float:I_COORDY, Float:I_COORDZ, INT_ID };
@Misiur - It is valid but ugly.