2017-01-26 23:40:46 +03:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
2017-06-21 01:19:47 +03:00
|
|
|
|
namespace CsbBuilder.BuilderNodes
|
2017-01-26 23:40:46 +03:00
|
|
|
|
{
|
|
|
|
|
public class BuilderCueNode : BuilderBaseNode
|
|
|
|
|
{
|
2021-03-19 22:24:07 +03:00
|
|
|
|
[Category("General"), DisplayName("ID")]
|
|
|
|
|
[Description("ID of this cue.")]
|
|
|
|
|
public uint Id { get; set; }
|
2017-01-26 23:40:46 +03:00
|
|
|
|
|
|
|
|
|
[ReadOnly(true)]
|
|
|
|
|
[Category("General"), DisplayName("Synth Reference Path")]
|
2021-03-19 22:24:07 +03:00
|
|
|
|
[Description("Full path of synth reference.")]
|
2017-01-26 23:40:46 +03:00
|
|
|
|
public string SynthReference { get; set; }
|
|
|
|
|
|
|
|
|
|
[Category("General"), DisplayName("User Comment")]
|
|
|
|
|
public string UserComment { get; set; }
|
|
|
|
|
|
|
|
|
|
[Category("General")]
|
2021-03-19 22:24:07 +03:00
|
|
|
|
[Description("Flags of this cue. Values are unknown.")]
|
2017-01-26 23:40:46 +03:00
|
|
|
|
public byte Flags { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|