commonMain.de.griefed.serverpackcreator.api.ApiWrapper.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of serverpackcreator-api-jvm Show documentation
Show all versions of serverpackcreator-api-jvm Show documentation
ServerPackCreators API, to create server packs from Forge, Fabric, Quilt, LegacyFabric and NeoForge modpacks.
The newest version!
/* Copyright (C) 2024 Griefed
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
* USA
*
* The full license can be found at https:github.com/Griefed/ServerPackCreator/blob/main/LICENSE
*/
package de.griefed.serverpackcreator.api
import de.griefed.serverpackcreator.api.modscanning.*
import de.griefed.serverpackcreator.api.utilities.TomlParser
import de.griefed.serverpackcreator.api.utilities.common.*
import de.griefed.serverpackcreator.api.versionmeta.VersionMeta
/**
* API wrapper, allowing you to conveniently initialize, setup and use the different aspects of ServerPackCreator.
*
* @author Griefed
*/
expect class ApiWrapper {
val apiProperties: ApiProperties
val fileUtilities: FileUtilities
val jarUtilities: JarUtilities
val systemUtilities: SystemUtilities
val jsonUtilities: JsonUtilities
val xmlUtilities: XmlUtilities
val tomlParser: TomlParser
val forgeTomlScanner: ForgeTomlScanner
val webUtilities: WebUtilities
val utilities: Utilities
val versionMeta: VersionMeta
val configurationHandler: ConfigurationHandler
val apiPlugins: ApiPlugins
val serverPackHandler: ServerPackHandler
val modScanner: ModScanner
val forgeAnnotationScanner: ForgeAnnotationScanner
val fabricScanner: FabricScanner
val quiltScanner: QuiltScanner
val neoForgeTomlScanner: NeoForgeTomlScanner
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy