public CachedSoundSampleProvider(CachedSound cachedSound) { this.cachedSound = cachedSound; }
public void PlaySound(CachedSound sound) { AddMixerInput(new CachedSoundSampleProvider(sound)); }
public BrainfuckToMusicInterpreter() { this.ptr = 0; this.Reset(); kick = new CachedSound("Kick 001 Apollo.wav"); }