Init.
This commit is contained in:
13
Source/Resources/Sound.cs
Normal file
13
Source/Resources/Sound.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user