public static void playDelayedInterfaceSound(string tag, int delayMS) { DelayedSound item = new DelayedSound { tag = tag, playTime = DateTime.Now.AddMilliseconds((double)delayMS) }; delayedSounds.Add(item); }
public static void playDelayedInterfaceSound(string tag, int delayMS) { DelayedSound item = new DelayedSound { tag = tag, playTime = DateTime.Now.AddMilliseconds((double) delayMS) }; delayedSounds.Add(item); }