18 lines
328 B
C#
18 lines
328 B
C#
namespace DaggerFramework
|
|
{
|
|
public class Sound : Resource
|
|
{
|
|
public SoundFormat Format { get; set; }
|
|
public int SampleRate { get; set; }
|
|
|
|
public Sound(string path, byte[] buffer) : base(path, buffer)
|
|
{
|
|
}
|
|
}
|
|
|
|
public enum SoundFormat
|
|
{
|
|
Mono,
|
|
Stereo
|
|
}
|
|
} |