FreakingGenius - v0.1.0
    Preparing search index...

    Interface EscalationPolicy

    Configures how quickly escalation progresses.

    interface EscalationPolicy {
        hintsPerLevel: number[];
        maxLevel: EscalationLevel;
    }
    Index

    Properties

    hintsPerLevel: number[]

    Number of hints at each level before automatically advancing. Index corresponds to EscalationLevel (e.g. [2, 2, 1, 1]).

    maxLevel: EscalationLevel

    Maximum level to reach before capping (prevents indefinite looping).