1
0
mirror of synced 2024-09-25 03:58:22 +02:00

Please build

This commit is contained in:
KillzXGaming 2019-03-27 19:17:54 -04:00
parent 87be68531e
commit d4be5b1e2f
3 changed files with 4 additions and 3 deletions

View File

@ -43,12 +43,13 @@ namespace FirstPlugin
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)