top.hendrixshen.magiclib.impl.minecraft.SharedConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of magiclib-minecraft-api-1.19.3-fabric Show documentation
Show all versions of magiclib-minecraft-api-1.19.3-fabric Show documentation
Unleash magic into Minecraft, infuse souls, ascend to heaven!
package top.hendrixshen.magiclib.impl.minecraft;
import lombok.Getter;
import org.jetbrains.annotations.NotNull;
import top.hendrixshen.magiclib.util.VersionUtil;
public class SharedConstants {
@Getter
private static final String modIdentifier = "@MOD_IDENTIFIER@";
@Getter
private static final String modName = "@MOD_NAME@";
@Getter
private static final String modVersion = "@MOD_VERSION@";
@Getter
private static final String modVersionType = VersionUtil.getVersionType(SharedConstants.modVersion);
public static @NotNull String getTranslatedModVersionType() {
return VersionUtil.translateVersionType(SharedConstants.modVersion);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy