SimpleMultipart/src/main/java/net/shadowfacts/simplemultipart/client/RenderStateProvider.java

15 lines
341 B
Java
Raw Normal View History

2018-12-20 00:39:10 +00:00
package net.shadowfacts.simplemultipart.client;
import net.minecraft.block.BlockState;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.ExtendedBlockView;
/**
* @author shadowfacts
*/
public interface RenderStateProvider {
BlockState getStateForRendering(BlockState state, BlockPos pos, ExtendedBlockView world);
}