Aida-chiyo-Talk-app

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

Output.cs (390B)


      1 using System;
      2 using System.Collections.Generic;
      3 using System.Linq;
      4 using System.Text;
      5 using System.Threading.Tasks;
      6 
      7 namespace Aida_chiyo_Talk_app
      8 {
      9     internal class Output
     10     {
     11         public void OutputConsole(string output)
     12         {
     13             VoiceVox voiceVox = new VoiceVox();
     14             voiceVox.VoiceVoxCon(output);
     15             Console.WriteLine(output);
     16         }
     17     }
     18 }