Change folder structure, add solution to the root.
This commit is contained in:
19
DaggerFramework/Source/Resources/Sound.cs
Normal file
19
DaggerFramework/Source/Resources/Sound.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
namespace DaggerFramework
|
||||
{
|
||||
public class Sound : Resource
|
||||
{
|
||||
public SoundFormat Format { get; set; }
|
||||
public int SampleRate { get; set; }
|
||||
public int BufferSize { get; set; }
|
||||
|
||||
public Sound(string path, byte[] buffer) : base(path, buffer)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
public enum SoundFormat
|
||||
{
|
||||
Mono,
|
||||
Stereo
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user