This commit is contained in:
2023-02-28 20:58:31 +01:00
commit f3ce543614
41 changed files with 4757 additions and 0 deletions

13
Source/Resources/Sound.cs Normal file
View File

@@ -0,0 +1,13 @@
namespace DaggerFramework
{
public class Sound : Resource
{
public float PitchScale { get; set; } = 1.0f;
public float Volume { get; set; } = 1.0f;
public Sound(byte[] data)
{
Data = data;
}
public byte[] Data;
}
}