pick 97420a31d The big reformat of 2020
This commit is contained in:
@@ -18,7 +18,6 @@
|
||||
|
||||
package appeng.bootstrap;
|
||||
|
||||
|
||||
import java.util.function.BiFunction;
|
||||
import java.util.function.Function;
|
||||
import java.util.function.Predicate;
|
||||
@@ -34,23 +33,22 @@ import net.minecraft.util.ResourceLocation;
|
||||
import net.minecraftforge.api.distmarker.Dist;
|
||||
import net.minecraftforge.api.distmarker.OnlyIn;
|
||||
|
||||
|
||||
/**
|
||||
* Allows for client-side rendering to be customized in the context of block/item registration.
|
||||
* Allows for client-side rendering to be customized in the context of
|
||||
* block/item registration.
|
||||
*/
|
||||
public interface IBlockRendering
|
||||
{
|
||||
public interface IBlockRendering {
|
||||
|
||||
@OnlyIn( Dist.CLIENT )
|
||||
IBlockRendering modelCustomizer( BiFunction<ResourceLocation, IBakedModel, IBakedModel> customizer );
|
||||
@OnlyIn(Dist.CLIENT)
|
||||
IBlockRendering modelCustomizer(BiFunction<ResourceLocation, IBakedModel, IBakedModel> customizer);
|
||||
|
||||
@OnlyIn( Dist.CLIENT )
|
||||
IBlockRendering blockColor( IBlockColor blockColor );
|
||||
@OnlyIn(Dist.CLIENT)
|
||||
IBlockRendering blockColor(IBlockColor blockColor);
|
||||
|
||||
@OnlyIn( Dist.CLIENT )
|
||||
IBlockRendering renderType(RenderType type);
|
||||
@OnlyIn(Dist.CLIENT)
|
||||
IBlockRendering renderType(RenderType type);
|
||||
|
||||
@OnlyIn( Dist.CLIENT )
|
||||
IBlockRendering renderType(Predicate<RenderType> type);
|
||||
@OnlyIn(Dist.CLIENT)
|
||||
IBlockRendering renderType(Predicate<RenderType> type);
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user