Пример #1
0
 public Interpreter()
 {
     context = new PlaybackContext()
     {
         Output    = SendOutput,
         Processed = SendProcessed
     };
     processor = new SingleVoicePlaybackProcessor(context);
 }
Пример #2
0
 public SingleVoicePlaybackProcessor(PlaybackContext context)
 {
     this.context = context;
 }
 public MultiVoicePlaybackProcessor(PlaybackContext context)
 {
     this.context = context;
 }