Example #1
0
        static Chime()
        {
            chimeThread = null;

            chime = new CachedSound("511397__pjhedman__se2-ding.wav");
            //chime = new CachedSound("484344__inspectorj__bike-bell-ding-single-01-01.wav");
            //chime = new CachedSound("17904__terminal__chime-16.wav");
        }
Example #2
0
 public CachedSoundSampleProvider(CachedSound cachedSound)
 {
     this.cachedSound = cachedSound;
 }
Example #3
0
 public void PlaySound(CachedSound sound)
 {
     AddMixerInput(new CachedSoundSampleProvider(sound));
 }