namespace RhythmBase.Events
{
///
/// Represents an event to set the volume of the heart explosion sound.
///
public class SetHeartExplodeVolume : BaseEvent, IBarBeginningEvent
{
///
/// Initializes a new instance of the class.
///
public SetHeartExplodeVolume()
{
Type = EventType.SetHeartExplodeVolume;
Tab = Tabs.Sounds;
}
///
/// Gets or sets the volume of the heart explosion sound.
///
public uint Volume { get; set; }
///
/// Gets the type of the event.
///
public override EventType Type { get; }
///
/// Gets the tab associated with the event.
///
public override Tabs Tab { get; }
}
}