mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-13 12:46:49 +00:00
3615a70cae
This reverts commit 85dbb9559a
.
17 lines
No EOL
388 B
C#
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();
|
|
}
|
|
}
|
|
} |