Combocounter annotation

This commit is contained in:
ThisIsALegitUsername 2023-02-02 16:09:33 +00:00
parent b0574fa5d7
commit f14f402a26
2 changed files with 2 additions and 5 deletions

View File

@ -13,7 +13,6 @@ import net.minecraft.item.ItemStack;
public class ArmorHud extends RenderModule {
public ScaledResolution sr;
public ArmorHud() { addSetting(helm, chestp, leg, boot, item); }
public static BooleanSetting helm = new BooleanSetting("Helmet", "", true);

View File

@ -1,5 +1,6 @@
package dev.resent.module.impl.hud;
import dev.resent.annotation.RenderMod;
import dev.resent.module.Theme;
import dev.resent.module.base.Category;
import dev.resent.module.base.RenderModule;
@ -7,12 +8,9 @@ import net.minecraft.client.Minecraft;
import net.minecraft.entity.Entity;
import net.minecraft.network.play.server.S19PacketEntityStatus;
@RenderMod(name = "ComboCounter", category = Category.HUD, x = 4, y = 24)
public class ComboCounter extends RenderModule {
public ComboCounter() {
super("ComboCounter", Category.HUD, 4, 24, true);
}
public static boolean attacked = false;
public static int combo = 0;