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

    Interface IGameStored

    cached information about games. Don't trunst this, avoid using it as dynamic information (e.g. the executable) that might be affected by which variant of the game is discovered will not be correct

    interface IGameStored {
        contributed?: string;
        details?: { [key: string]: any };
        environment?: { [key: string]: string };
        executable: string;
        extensionPath?: string;
        final?: boolean;
        id: string;
        imageURL?: string;
        logo?: string;
        name: string;
        parameters?: string[];
        requiredFiles: string[];
        shell?: boolean;
        shortName?: string;
        supportedTools?: IToolStored[];
    }
    Index

    Properties

    contributed?: string
    details?: { [key: string]: any }
    environment?: { [key: string]: string }
    executable: string
    extensionPath?: string
    final?: boolean
    id: string
    imageURL?: string
    logo?: string
    name: string
    parameters?: string[]
    requiredFiles: string[]
    shell?: boolean
    shortName?: string
    supportedTools?: IToolStored[]