This commit is contained in:
0x3C50 2022-03-18 18:35:41 +01:00
parent a4c8ca5ba5
commit a14a60c6cc
9 changed files with 8 additions and 9 deletions

View file

@ -7,7 +7,6 @@ package net.shadow.client.feature.module;
import net.shadow.client.feature.module.impl.combat.*;
import net.shadow.client.feature.module.impl.exploit.*;
import net.shadow.client.feature.module.impl.fun.*;
import net.shadow.client.feature.module.impl.misc.*;
import net.shadow.client.feature.module.impl.movement.*;
import net.shadow.client.feature.module.impl.render.*;

View file

@ -2,7 +2,7 @@
* Copyright (c) Shadow client, 0x150, Saturn5VFive 2022. All rights reserved.
*/
package net.shadow.client.feature.module.impl.fun;
package net.shadow.client.feature.module.impl.combat;
import net.minecraft.block.Block;
import net.minecraft.block.ShapeContext;

View file

@ -2,7 +2,7 @@
* Copyright (c) Shadow client, 0x150, Saturn5VFive 2022. All rights reserved.
*/
package net.shadow.client.feature.module.impl.fun;
package net.shadow.client.feature.module.impl.combat;
import net.minecraft.client.util.math.MatrixStack;
import net.minecraft.entity.Entity;

View file

@ -2,7 +2,7 @@
* Copyright (c) Shadow client, 0x150, Saturn5VFive 2022. All rights reserved.
*/
package net.shadow.client.feature.module.impl.fun;
package net.shadow.client.feature.module.impl.misc;
import net.minecraft.client.util.math.MatrixStack;
import net.minecraft.network.packet.c2s.play.PlayerInteractItemC2SPacket;

View file

@ -2,7 +2,7 @@
* Copyright (c) Shadow client, 0x150, Saturn5VFive 2022. All rights reserved.
*/
package net.shadow.client.feature.module.impl.fun;
package net.shadow.client.feature.module.impl.misc;
import com.mojang.blaze3d.systems.RenderSystem;
import net.minecraft.client.render.*;

View file

@ -21,7 +21,7 @@ import java.util.Objects;
public class EntityFly extends Module {
final KeyBinding down = new KeyBinding("", GLFW.GLFW_KEY_LEFT_SHIFT, "");
final KeyBinding down = new KeyBinding("", GLFW.GLFW_KEY_LEFT_ALT, "");
Entity lastRide = null;
public EntityFly() {

View file

@ -2,7 +2,7 @@
* Copyright (c) Shadow client, 0x150, Saturn5VFive 2022. All rights reserved.
*/
package net.shadow.client.feature.module.impl.fun;
package net.shadow.client.feature.module.impl.render;
import net.minecraft.client.util.math.MatrixStack;
import net.minecraft.command.argument.EntityAnchorArgumentType;

View file

@ -2,7 +2,7 @@
* Copyright (c) Shadow client, 0x150, Saturn5VFive 2022. All rights reserved.
*/
package net.shadow.client.feature.module.impl.fun;
package net.shadow.client.feature.module.impl.render;
import net.minecraft.client.util.math.MatrixStack;
import net.shadow.client.feature.module.Module;

View file

@ -7,7 +7,7 @@ package net.shadow.client.mixin;
import net.minecraft.client.network.AbstractClientPlayerEntity;
import net.minecraft.client.render.entity.feature.Deadmau5FeatureRenderer;
import net.shadow.client.feature.module.ModuleRegistry;
import net.shadow.client.feature.module.impl.fun.MouseEars;
import net.shadow.client.feature.module.impl.render.MouseEars;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.injection.At;
import org.spongepowered.asm.mixin.injection.Redirect;