mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-04 14:39:10 +01:00
12 lines
No EOL
247 B
C#
12 lines
No EOL
247 B
C#
using Microsoft.Xna.Framework.Audio;
|
|
|
|
namespace MLEM.Extensions {
|
|
public static class SoundExtensions {
|
|
|
|
public static void Replay(this SoundEffectInstance sound) {
|
|
sound.Stop();
|
|
sound.Play();
|
|
}
|
|
|
|
}
|
|
} |