mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-06-07 11:45:26 +00:00
17 lines
388 B
C#
17 lines
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();
|
|
}
|
|
}
|
|
} |