All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.earthcomputer.multiconnect.protocols.v1_12.mixin.SuspendTownParticleAccessor Maven / Gradle / Ivy

The newest version!
package net.earthcomputer.multiconnect.protocols.v1_12.mixin;

import net.earthcomputer.multiconnect.impl.MixinHelper;
import net.minecraft.client.multiplayer.ClientLevel;
import net.minecraft.client.particle.SuspendedTownParticle;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.gen.Invoker;

@Mixin(SuspendedTownParticle.class)
public interface SuspendTownParticleAccessor {

    @Invoker("")
    static SuspendedTownParticle constructor(ClientLevel level, double x, double y, double z, double velocityX, double velocityY, double velocityZ) {
        return MixinHelper.fakeInstance();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy