Exemplo n.º 1
0
 public static bool TryLoad(string line)
 {
     if (!(line.Substring(0, 4) == "play"))
     {
         return(false);
     }
     PlaySoundInstruction.Load(line);
     return(true);
 }