Beispiel #1
0
 private async Task StartIntroMusic()
 {
     try
     {
         AudioModule am = new AudioModule((AudioService)Program._services.GetService(typeof(AudioService)), Context);
         await am.Music3();
     }
     catch (Exception ex)
     {
         await ReplyAsync(ex.ToString());
     }
 }