16 lines
438 B
Java
16 lines
438 B
Java
package fr.adrien1106.reframed.util.mixin;
|
|
|
|
import net.minecraft.block.BlockState;
|
|
import net.minecraft.util.math.BlockPos;
|
|
|
|
public interface IBlockRenderInfoMixin {
|
|
|
|
void prepareForBlock(BlockState state, BlockPos pos, boolean ao, int theme_index, int model_hash);
|
|
|
|
void prepareForBlock(BlockState state, BlockPos pos, long seed, boolean ao, int theme_index, int model_hash);
|
|
|
|
int getThemeIndex();
|
|
|
|
int getModelHash();
|
|
}
|