All the library (included natives) process are test finished.

This commit is contained in:
2026-07-12 22:43:34 +08:00
parent e42a9b0a50
commit 864ce33db1
8 changed files with 1094 additions and 469 deletions
+17
View File
@@ -0,0 +1,17 @@
MOJANG_RESOURCE_ENDPOINT = "https://resources.download.minecraft.net/{}/{}"
def fetch_asset_manifest(target_version_manifest: dict) -> dict:
"""
Fetch the asset manifest from target version's manifest.
:param target_version_manifest:
:return:
asset_manifest: dict
"""
assetIndex = target_version_manifest.get("assetIndex")
if assetIndex is None:
pass