mirror of
https://github.com/Miasmusa/Shadow.git
synced 2024-11-15 03:14:54 -05:00
e
This commit is contained in:
parent
a4c8ca5ba5
commit
a14a60c6cc
9 changed files with 8 additions and 9 deletions
|
@ -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.*;
|
||||
|
|
|
@ -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;
|
|
@ -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;
|
|
@ -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;
|
|
@ -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.*;
|
|
@ -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() {
|
||||
|
|
|
@ -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;
|
|
@ -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;
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue