mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-18 13:44:21 +00:00
fe8bd257d1
- No more UDP - Lots of random refactoring as well
15 lines
311 B
C#
15 lines
311 B
C#
using System;
|
|
namespace qController.QItems
|
|
{
|
|
public class NoQCueSelected : QCue
|
|
{
|
|
public NoQCueSelected()
|
|
{
|
|
listName = "No Cue Selected";
|
|
type = "";
|
|
notes = "Workspace has loaded but no cue is selected";
|
|
number = "!";
|
|
}
|
|
}
|
|
}
|