/* * Copyright (C) 2022 NotEnoughUpdates contributors * * This file is part of NotEnoughUpdates. * * NotEnoughUpdates is free software: you can redistribute it * and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either * version 3 of the License, or (at your option) any later version. * * NotEnoughUpdates is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with NotEnoughUpdates. If not, see <https://www.gnu.org/licenses/>. */packageio.github.moulberry.notenoughupdates.miscfeatures;importio.github.moulberry.notenoughupdates.NotEnoughUpdates;importio.github.moulberry.notenoughupdates.autosubscribe.NEUAutoSubscribe;importio.github.moulberry.notenoughupdates.util.SBInfo;importio.github.moulberry.notenoughupdates.util.SpecialColour;importio.github.moulberry.notenoughupdates.util.Utils;importnet.minecraft.block.Block;importnet.minecraft.block.material.Material;importnet.minecraft.block.state.IBlockState;importnet.minecraft.client.Minecraft;importnet.minecraft.client.entity.EntityPlayerSP;importnet.minecraft.client.gui.ScaledResolution;importnet.minecraft.client.multiplayer.WorldClient;importnet.minecraft.client.renderer.BlockRendererDispatcher;importnet.minecraft.client.renderer.EntityRenderer;importnet.minecraft.client.renderer.GlStateManager;importnet.minecraft.client.renderer.Tessellator;importnet.minecraft.client.renderer.WorldRenderer;importnet.minecraft.client.renderer.block.model.BakedQuad;importnet.minecraft.client.renderer.texture.TextureUtil;importnet.minecraft.client.renderer.vertex.DefaultVertexFormats;importnet.minecraft.client.resources.model.IBakedModel;importnet.minecraft.entity.player.EntityPlayer;importnet.minecraft.init.Blocks;importnet.minecraft.init.Items;importnet.minecraft.item.Item;importnet.minecraft.item.ItemStack;importnet.minecraft.nbt.CompressedStreamTools;importnet.minecraft.nbt.NBTTagCompound;importnet.minecraft.nbt.NBTTagList;importnet.minecraft.util.AxisAlignedBB;importnet.minecraft.util.BlockPos;importnet.minecraft.util.EnumChatFormatting;importnet.minecraft.util.EnumFacing;importnet.minecraft.util.MovingObjectPosition;importnet.minecraft.util.Vec3;importnet.minecraft.util.Vec3i;importnet.minecraftforge.client.event.DrawBlockHighlightEvent;importnet.minecraftforge.client.event.RenderGameOverlayEvent;importnet.minecraftforge.event.entity.player.PlayerInteractEvent;importnet.minecraftforge.fml.common.Loader;importnet.minecraftforge.fml.common.eventhandler.SubscribeEvent;importnet.minecraftforge.fml.common.gameevent.TickEvent;importorg.lwjgl.opengl.GL11;importorg.lwjgl.util.vector.Vector3f;importjava.awt.*