mirror of
https://github.com/jwetzell/QControlKit.git
synced 2026-08-05 23:43:54 +00:00
32 lines
599 B
C#
32 lines
599 B
C#
using QControlKit.Constants;
|
|
|
|
namespace QControlKit.Cue
|
|
{
|
|
public class QMidiFileCue :QCue
|
|
{
|
|
public bool patch
|
|
{
|
|
get
|
|
{
|
|
return (bool)propertyForKey(QOSCKey.Patch);
|
|
}
|
|
set
|
|
{
|
|
setProperty(value, QOSCKey.Patch);
|
|
}
|
|
}
|
|
|
|
public bool rate
|
|
{
|
|
get
|
|
{
|
|
return (bool)propertyForKey(QOSCKey.Rate);
|
|
}
|
|
set
|
|
{
|
|
setProperty(value, QOSCKey.Rate);
|
|
}
|
|
}
|
|
}
|
|
}
|