├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ └── java.yml ├── .gitignore ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src └── main ├── java └── io │ └── github │ └── lxgaming │ └── mixin │ └── launch │ ├── MixinBootstrap.java │ ├── MixinClassLoader.java │ ├── MixinLaunchPluginService.java │ └── MixinTransformationService.java └── resources └── META-INF └── services ├── cpw.mods.modlauncher.api.ITransformationService ├── org.spongepowered.asm.service.IGlobalPropertyService ├── org.spongepowered.asm.service.IMixinService └── org.spongepowered.asm.service.IMixinServiceBootstrap /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LXGaming/MixinBootstrap/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LXGaming/MixinBootstrap/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/java.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LXGaming/MixinBootstrap/HEAD/.github/workflows/java.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LXGaming/MixinBootstrap/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LXGaming/MixinBootstrap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LXGaming/MixinBootstrap/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx512M 2 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LXGaming/MixinBootstrap/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LXGaming/MixinBootstrap/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LXGaming/MixinBootstrap/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LXGaming/MixinBootstrap/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "MixinBootstrap" 2 | -------------------------------------------------------------------------------- /src/main/java/io/github/lxgaming/mixin/launch/MixinBootstrap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LXGaming/MixinBootstrap/HEAD/src/main/java/io/github/lxgaming/mixin/launch/MixinBootstrap.java -------------------------------------------------------------------------------- /src/main/java/io/github/lxgaming/mixin/launch/MixinClassLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LXGaming/MixinBootstrap/HEAD/src/main/java/io/github/lxgaming/mixin/launch/MixinClassLoader.java -------------------------------------------------------------------------------- /src/main/java/io/github/lxgaming/mixin/launch/MixinLaunchPluginService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LXGaming/MixinBootstrap/HEAD/src/main/java/io/github/lxgaming/mixin/launch/MixinLaunchPluginService.java -------------------------------------------------------------------------------- /src/main/java/io/github/lxgaming/mixin/launch/MixinTransformationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LXGaming/MixinBootstrap/HEAD/src/main/java/io/github/lxgaming/mixin/launch/MixinTransformationService.java -------------------------------------------------------------------------------- /src/main/resources/META-INF/services/cpw.mods.modlauncher.api.ITransformationService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LXGaming/MixinBootstrap/HEAD/src/main/resources/META-INF/services/cpw.mods.modlauncher.api.ITransformationService -------------------------------------------------------------------------------- /src/main/resources/META-INF/services/org.spongepowered.asm.service.IGlobalPropertyService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LXGaming/MixinBootstrap/HEAD/src/main/resources/META-INF/services/org.spongepowered.asm.service.IGlobalPropertyService -------------------------------------------------------------------------------- /src/main/resources/META-INF/services/org.spongepowered.asm.service.IMixinService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LXGaming/MixinBootstrap/HEAD/src/main/resources/META-INF/services/org.spongepowered.asm.service.IMixinService -------------------------------------------------------------------------------- /src/main/resources/META-INF/services/org.spongepowered.asm.service.IMixinServiceBootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LXGaming/MixinBootstrap/HEAD/src/main/resources/META-INF/services/org.spongepowered.asm.service.IMixinServiceBootstrap --------------------------------------------------------------------------------