コード例 #1
0
 public Interpreter()
 {
     context = new PlaybackContext()
     {
         Output    = SendOutput,
         Processed = SendProcessed
     };
     processor = new SingleVoicePlaybackProcessor(context);
 }
コード例 #2
0
 public void ResetPlayback()
 {
     context.LastProcessedElementIndices = new int[] { 0, 0 };
     context.ElementIndices = new int[] { 0, 0 };
     processor = new SingleVoicePlaybackProcessor(context);
 }