getDoomName method

String getDoomName(
  1. int doomId
)

Implementation

String getDoomName(int doomId) {
  String res="";
  for(Doom d in dooms!){
    if(d.id == doomId) {res=d.name;break;}
  }
  return res;
}