Plants vs. Zombies: Replanted - v1.0.3
    Preparing search index...

    Interface IDiscoveryResult

    describes parameters for the game set by the user or discovered automatically. There are essentially two blocks of fields here: one is to identify the local installation of the game the other to override defaults as provided by the game extension. This is particularly relevant for games added by the user.

    IDiscoveryResult

    interface IDiscoveryResult {
        environment?: { [key: string]: string };
        executable?: string;
        extensionPath?: string;
        hidden?: boolean;
        id?: string;
        logo?: string;
        mergeMods?: boolean;
        name?: string;
        parameters?: string[];
        path?: string;
        pathSetManually?: boolean;
        shell?: boolean;
        shortName?: string;
        store?: string;
        tools?: { [id: string]: IDiscoveredTool };
    }
    Index

    Properties

    environment?: { [key: string]: string }
    executable?: string
    extensionPath?: string
    hidden?: boolean
    id?: string
    logo?: string
    mergeMods?: boolean
    name?: string
    parameters?: string[]
    path?: string
    pathSetManually?: boolean
    shell?: boolean
    shortName?: string
    store?: string
    tools?: { [id: string]: IDiscoveredTool }