Code: Select all
switch (_string)
{
case "cat" :
//Do cat thing
break;
case "dog" :
//do dog thing
break;
}
Moderator: GZDoom Developers
Code: Select all
switch (_string)
{
case "cat" :
//Do cat thing
break;
case "dog" :
//do dog thing
break;
}