mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-22 04:23:09 +00:00
Please build
This commit is contained in:
parent
87be68531e
commit
d4be5b1e2f
3 changed files with 4 additions and 3 deletions
Binary file not shown.
Binary file not shown.
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue