![JAR search and dependency download from the Maven repository](/logo.png)
com.llamalad7.mixinextras.MixinExtrasBootstrap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mixinextras-fabric Show documentation
Show all versions of mixinextras-fabric Show documentation
Companion library to Mixin with lots of features to improve the compatibility and concision of your mixins!
package com.llamalad7.mixinextras;
import com.llamalad7.mixinextras.service.MixinExtrasService;
import com.llamalad7.mixinextras.service.MixinExtrasVersion;
@SuppressWarnings("unused")
public class MixinExtrasBootstrap {
private static boolean initialized = false;
@Deprecated
public static String getVersion() {
return MixinExtrasVersion.LATEST.toString();
}
public static void init() {
if (initialized) {
return;
}
initialized = true;
MixinExtrasService.setup();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy