meta-unmojang/meta/common/neoforge.py
Sefa Eyeoglu ca4fb33fde
fix: use same ForgeWrapper for both Forge and NeoForge
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2023-08-17 22:21:38 +02:00

15 lines
469 B
Python

from os.path import join
from ..model import GradleSpecifier, make_launcher_library
BASE_DIR = "neoforge"
JARS_DIR = join(BASE_DIR, "jars")
INSTALLER_INFO_DIR = join(BASE_DIR, "installer_info")
INSTALLER_MANIFEST_DIR = join(BASE_DIR, "installer_manifests")
VERSION_MANIFEST_DIR = join(BASE_DIR, "version_manifests")
FILE_MANIFEST_DIR = join(BASE_DIR, "files_manifests")
DERIVED_INDEX_FILE = join(BASE_DIR, "derived_index.json")
NEOFORGE_COMPONENT = "net.neoforged"