Files
2026-03-04 10:03:45 +08:00

21 lines
300 B
C#

using System;
namespace DarkTonic.MasterAudio
{
[Serializable]
public class SongMetadataFloatValue
{
public string PropertyName;
public float Value;
public SongMetadataFloatValue(SongMetadataProperty prop)
{
if (prop != null)
{
PropertyName = prop.PropertyName;
}
}
}
}