mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2025-02-16 13:58:26 +00:00
Another error fix
This commit is contained in:
parent
d4be5b1e2f
commit
9c8bb26a8f
2 changed files with 4 additions and 3 deletions
Binary file not shown.
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue