Represents the handle to a sound.
 internal Sound(int index, double volume, double pitch, bool looped)
 {
     this.Index = index;
     this.Volume = volume;
     this.Pitch = pitch;
     this.Looped = looped;
     this.Handle = null;
 }
Beispiel #2
0
			internal Sound(int index) {
				this.Index = index;
				this.Handle = null;
			}
 public LoopSoundFor(SoundHandle s, int startTime, int ms)
 {
     sound = s;
     start = startTime;
     duration = ms;
 }