mirror of
https://github.com/jwetzell/QControlKit.git
synced 2026-08-15 20:33:45 +00:00
Initial Commit
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace QSharp
|
||||
{
|
||||
public class QCue
|
||||
{
|
||||
Dictionary<string,object> cueData = new Dictionary<string,object>();
|
||||
public QCue()
|
||||
{
|
||||
}
|
||||
|
||||
public object propertyForKey(string key)
|
||||
{
|
||||
if (cueData.ContainsKey(key))
|
||||
return cueData[key];
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user