Table of Contents

Method GetPrestigeNodes

Namespace
GrindFest
Assembly
GrindFest.dll

GetPrestigeNodes()

Returns every node in the Grimoire with its current cost, parents, and inscribed state.

public List<PrestigeNode> GetPrestigeNodes()

Returns

List<PrestigeNode>

Examples

foreach (var node in GetPrestigeNodes())
{
    if (!node.IsInscribed && Gold >= node.GoldCost)
        InscribePrestigeNode(node.Id);
}