1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-13 09:33:50 +02:00
MLEM/MLEM/Misc/SoundEffectInfo.cs

14 lines
421 B
C#
Raw Normal View History

2021-07-05 16:36:48 +02:00
using System;
using Microsoft.Xna.Framework.Audio;
namespace MLEM.Misc {
2021-07-05 16:36:48 +02:00
/// <inheritdoc />
[Obsolete("This class has been moved to MLEM.Sound.SoundEffectInfo in 5.1.0")]
public class SoundEffectInfo : Sound.SoundEffectInfo {
2021-07-05 16:36:48 +02:00
/// <inheritdoc />
public SoundEffectInfo(SoundEffect sound, float volume = 1, float pitch = 0, float pan = 0) : base(sound, volume, pitch, pan) {
}
}
}