Interface ModPackManifest

interface ModPackManifest {
    createDeclaredDirectoriesForModPack(pack: ModPack): List<ModPackDirectory>;
    edit(): ModPackManifestEditor;
    getAuthor(): string;
    getDeclaredDirectories(): List<ModPackDeclaredDirectory>;
    getDescription(): string;
    getDisplayedName(): string;
    getPackName(): string;
    getVersionCode(): number;
    getVersionName(): string;
    loadFile(file: File): void;
    loadInputStream(stream: InputStream): void;
    loadJson(json: JSONObject): void;
    setAuthor(author: string): void;
    setDescription(descr: string): void;
    setDisplayedName(name: string): void;
    setPackName(name: string): void;
    setVersionCode(code: number): void;
    setVersionName(name: string): void;
}

Methods

Copyright © 2024 Nernar. Copyright © 2020 #mineprogramming. Built with ❤ and TypeDoc.