Files
Voile/Source/Resources/SoundLoader.cs
2023-02-28 20:58:31 +01:00

15 lines
328 B
C#

namespace DaggerFramework
{
public class SoundLoader : ResourceLoader
{
public override Resource Load(string path)
{
// TODO
// var data = File.ReadAllBytes(path);
var sound = new Sound(null);
sound.Path = path;
return sound;
}
}
}