04.02.2012, 17:31
Quote:
Dude, why case its just the same thing. If you use
pawn Код:
|
E.G:
pawn Код:
if(blahblah == 1) {
..
}
else if(blahblah == 2) {
..
}
pawn Код:
switch(blahblah)
{
case 1: {
..
}
case 2: {
..
}
}
Dude, why case its just the same thing. If you use
pawn Код:
|
if(blahblah == 1) {
..
}
else if(blahblah == 2) {
..
}
switch(blahblah)
{
case 1: {
..
}
case 2: {
..
}
}