Ryujinx/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ParentNode.cs
2018-12-01 14:03:56 -06:00

17 lines
No EOL
388 B
C#

namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
{
public abstract class ParentNode : BaseNode
{
public BaseNode Child { get; private set; }
public ParentNode(NodeType type, BaseNode child) : base(type)
{
this.Child = child;
}
public override string GetName()
{
return Child.GetName();
}
}
}