mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-10 09:53:53 +00:00
16 lines
317 B
C#
16 lines
317 B
C#
using qController.QItems;
|
|
|
|
namespace qController
|
|
{
|
|
public class NoQCueSelected : QCue
|
|
{
|
|
public NoQCueSelected()
|
|
{
|
|
listName = "No Cue Selected";
|
|
type = "";
|
|
notes = "Workspace has loaded but no cue is selected";
|
|
number = "!";
|
|
}
|
|
}
|
|
}
|