13 lines
286 B
C#
13 lines
286 B
C#
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;
|
|
}
|
|
} |