14 lines
263 B
Java
14 lines
263 B
Java
/*
|
|
* Copyright (C) 2018 BARBOTIN Nicolas
|
|
*/
|
|
|
|
package net.montoyo.wd.client.renderers;
|
|
|
|
import net.minecraft.world.item.ItemStack;
|
|
|
|
public interface IItemRenderer {
|
|
|
|
void render(ItemStack is, float handSideSign, float swingProgress, float equipProgress);
|
|
|
|
}
|