15 lines
348 B
C#
15 lines
348 B
C#
namespace DaggerFramework
|
|
{
|
|
public class SoundLoader : ResourceLoader<Sound>
|
|
{
|
|
public override Sound Load(string path)
|
|
{
|
|
// TODO
|
|
// var data = File.ReadAllBytes(path);
|
|
var sound = new Sound(path, new byte[] { });
|
|
sound.Path = path;
|
|
|
|
return sound;
|
|
}
|
|
}
|
|
} |