feat:改了一大堆

This commit is contained in:
Tianpao
2025-09-20 22:42:12 +08:00
parent ffdff97b44
commit b5441f941d
18 changed files with 587 additions and 110 deletions

View File

@@ -0,0 +1,15 @@
interface XModloader {
setup: Promise<void>
}
export function modloader(ml:string,mcv:string,mlv:string){
switch (ml) {
case "fabric":
break;
case "forge":
break;
case "neoforge":
break;
default:
break;
}
}