Another error fix

This commit is contained in:
KillzXGaming 2019-03-27 19:20:29 -04:00
parent d4be5b1e2f
commit 9c8bb26a8f
2 changed files with 4 additions and 3 deletions

Binary file not shown.

View file

@ -116,12 +116,13 @@ namespace FirstPlugin
//get a reference to the value to change
class EditableNode
{
public Type type { get => Node[Index].GetType(); }
public Type type { get { return Node[Index].GetType(); } }
dynamic Node;
dynamic Index;
public dynamic Get() => Node[Index];
public void Set(dynamic value) => Node[Index] = value;
public dynamic Get() { return Node[Index]; }
public void Set(dynamic value) { Node[Index] = value; }
public string GetTreeViewString()
{
if (Index is int)