mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-08-04 01:52:26 -07:00
Naming conventions
This commit is contained in:
@@ -4,9 +4,9 @@ namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
|
||||
{
|
||||
public BaseNode Child { get; private set; }
|
||||
|
||||
public ParentNode(NodeType Type, BaseNode Child) : base(Type)
|
||||
public ParentNode(NodeType type, BaseNode child) : base(type)
|
||||
{
|
||||
this.Child = Child;
|
||||
this.Child = child;
|
||||
}
|
||||
|
||||
public override string GetName()
|
||||
|
Reference in New Issue
Block a user