You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
564 B
Java

package azurelmao.examplemod.mixin.helper;
import net.minecraft.src.Block;
import net.minecraft.src.StepSound;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.gen.Invoker;
@Mixin(value = Block.class, remap = false)
public interface BlockInterface {
@Invoker("setHardness")
Block callSetHardness(float f);
@Invoker("setResistance")
Block callSetResistance(float f);
@Invoker("setStepSound")
Block callSetStepSound(StepSound stepSound);
@Invoker("setLightValue")
Block callSetLightValue(float f);
}