Renamed directory to anticope

This commit is contained in:
stormybytes
2021-10-24 09:50:26 +07:00
parent f9753eba09
commit d8c1ad1881
110 changed files with 233 additions and 243 deletions

View File

@@ -0,0 +1,16 @@
package anticope.rejects.events;
import meteordevelopment.meteorclient.events.packets.PacketEvent;
import net.minecraft.network.packet.s2c.play.CustomPayloadS2CPacket;
public class CustomPayloadEvent extends PacketEvent {
public CustomPayloadS2CPacket packet;
private static final CustomPayloadEvent INSTANCE = new CustomPayloadEvent();
public static CustomPayloadEvent get(CustomPayloadS2CPacket packet) {
INSTANCE.setCancelled(false);
INSTANCE.packet = packet;
return INSTANCE;
}
}