// Returns the sound associated with the given key code
 // keyCode - The keyboard key code associated with the sound to retrieve
 public SoundInfo getSound(int keyCode) {
   return soundManager.getSound(keyCode);
 }