2017-12-07 06:49:25 -05:00
|
|
|
|
using Filtration.ObjectModel.BlockItemBaseTypes;
|
|
|
|
|
|
|
|
|
|
namespace Filtration.ObjectModel.BlockItemTypes
|
|
|
|
|
{
|
2017-12-07 08:20:18 -05:00
|
|
|
|
public class PositionalSoundBlockItem : StrIntBlockItem
|
2017-12-07 06:49:25 -05:00
|
|
|
|
{
|
|
|
|
|
public PositionalSoundBlockItem()
|
|
|
|
|
{
|
2017-12-07 08:20:18 -05:00
|
|
|
|
Value = "1";
|
2017-12-07 06:49:25 -05:00
|
|
|
|
SecondValue = 79;
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-07 08:20:18 -05:00
|
|
|
|
public PositionalSoundBlockItem(string value, int secondValue) : base(value, secondValue)
|
2017-12-07 06:49:25 -05:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string PrefixText => "PlayAlertSoundPositional";
|
|
|
|
|
public override int MaximumAllowed => 1;
|
|
|
|
|
public override string DisplayHeading => "Play Positional Alert Sound";
|
2018-08-29 13:12:02 -04:00
|
|
|
|
public override int SortOrder => 27;
|
2017-12-07 06:49:25 -05:00
|
|
|
|
}
|
2017-12-07 09:15:22 -05:00
|
|
|
|
}
|