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

    Interface IModType

    interface IModType {
        getPath: (game: IGame) => string;
        isSupported: (gameId: string) => boolean;
        options: IModTypeOptions;
        priority: number;
        test: (installInstructions: IInstruction[]) => Bluebird<boolean>;
        typeId: string;
    }
    Index

    Properties

    getPath: (game: IGame) => string
    isSupported: (gameId: string) => boolean
    priority: number
    test: (installInstructions: IInstruction[]) => Bluebird<boolean>
    typeId: string