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

    Interface IGameLoadOrderEntry

    interface IGameLoadOrderEntry {
        callback?: (loadOrder: ILoadOrder, updateType?: UpdateType) => void;
        createInfoPanel: (props: IInfoPanelProps) => any;
        displayCheckboxes?: boolean;
        filter?: (mods: IMod[]) => IMod[];
        gameArtURL: string;
        gameId: string;
        itemRenderer?: any;
        noCollectionGeneration?: boolean;
        preSort?: (
            items: ILoadOrderDisplayItem[],
            sortDir: SortType,
            updateType?: UpdateType,
        ) => Bluebird<ILoadOrderDisplayItem[]>;
    }
    Index

    Properties

    callback?: (loadOrder: ILoadOrder, updateType?: UpdateType) => void
    createInfoPanel: (props: IInfoPanelProps) => any
    displayCheckboxes?: boolean
    filter?: (mods: IMod[]) => IMod[]
    gameArtURL: string
    gameId: string
    itemRenderer?: any
    noCollectionGeneration?: boolean
    preSort?: (
        items: ILoadOrderDisplayItem[],
        sortDir: SortType,
        updateType?: UpdateType,
    ) => Bluebird<ILoadOrderDisplayItem[]>