07.07.2012, 01:52
Quote:
Right now I have:
switch (reason) { case blabla: formatblablabla; case bloblo: formatblobloblo; return blublublu; } Am I able to use something like: switch (reason) { case blablabla: formatblublu AND formatbleble } Always when I try to add two lines / codes after 1 case it will give me errors... |
pawn Код:
switch (reason)
{
case blablabla: {
formatblublu;
formatbleble;
}
}