mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
12 lines
295 B
C#
12 lines
295 B
C#
namespace AssetRipper.AssemblyDumper.AST;
|
|
|
|
internal sealed class KeyNode : SingleNode<Node>
|
|
{
|
|
public KeyNode(TypeSignature typeSignature, Node? parent = null) : base(parent)
|
|
{
|
|
Child = Create(typeSignature, this);
|
|
}
|
|
|
|
public override TypeSignature TypeSignature => Child.TypeSignature;
|
|
}
|