pick 97420a31d The big reformat of 2020

This commit is contained in:
yueh
2020-06-16 21:41:28 +02:00
parent 5304b3febe
commit 5225ea426b
2252 changed files with 95466 additions and 118582 deletions
@@ -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);
}