Initial Commit

This commit is contained in:
2020-06-08 14:11:54 -05:00
commit 830e905300
24 changed files with 2129 additions and 0 deletions
+19
View File
@@ -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;
}
}
}