コード例 #1
0
ファイル: Voice.cs プロジェクト: Jammyhammy/Nekobot
        internal static void Startup(DiscordClient c)
        {
            c.UsingAudio(x =>
            {
                x.Mode             = AudioMode.Outgoing;
                x.EnableEncryption = true;
            });

            Music.Load(c);
        }
コード例 #2
0
ファイル: Voice.cs プロジェクト: ImportTaste/Nekobot
 internal static async Task Startup(DiscordSocketClient c)
 {
     await Music.Load(c);
 }