Fixing OptiFine, until something better comes.
at 1.0 25 lines 1.4 kB view raw
1package dev.redstudio.optinotfine; 2 3import net.minecraftforge.fml.common.Mod; 4 5import static dev.redstudio.optinotfine.ProjectConstants.*; 6 7// /$$$$$$ /$$ /$$ /$$ /$$ /$$ /$$$$$$$$ /$$ 8// /$$__ $$ | $$ |__/| $$$ | $$ | $$ | $$_____/|__/ 9// | $$ \ $$ /$$$$$$ /$$$$$$ /$$| $$$$| $$ /$$$$$$ /$$$$$$ | $$ /$$ /$$$$$$$ /$$$$$$ 10// | $$ | $$ /$$__ $$|_ $$_/ | $$| $$ $$ $$ /$$__ $$|_ $$_/ | $$$$$ | $$| $$__ $$ /$$__ $$ 11// | $$ | $$| $$ \ $$ | $$ | $$| $$ $$$$| $$ \ $$ | $$ | $$__/ | $$| $$ \ $$| $$$$$$$$ 12// | $$ | $$| $$ | $$ | $$ /$$| $$| $$\ $$$| $$ | $$ | $$ /$$| $$ | $$| $$ | $$| $$_____/ 13// | $$$$$$/| $$$$$$$/ | $$$$/| $$| $$ \ $$| $$$$$$/ | $$$$/| $$ | $$| $$ | $$| $$$$$$$ 14// \______/ | $$____/ \___/ |__/|__/ \__/ \______/ \___/ |__/ |__/|__/ |__/ \_______/ 15// | $$ 16// | $$ 17// |__/ 18 19/// Main class of OptiNotFine. 20/// 21/// @author Luna Mira Lage (Desoroxxx) 22/// @since 1.0 23@Mod(clientSideOnly = true, modid = ID, name = NAME, version = VERSION, dependencies = "required-after:configanytime@[" + CONFIG_ANYTIME_VERSION + ",);;required-after:redcore@[" + RED_CORE_VERSION + ",);", updateJSON = "https://forge.curseupdate.com/1409147/" + ID) 24public final class OptiNotFine { 25}