Flavolite textures, leaves

This commit is contained in:
paulevsGitch 2020-10-13 14:22:12 +03:00
parent 0d5e6d544c
commit a2b6249671
11 changed files with 47 additions and 0 deletions

View file

@ -0,0 +1,12 @@
package ru.betterend.blocks.basis;
import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings;
import net.minecraft.block.Blocks;
import net.minecraft.block.LeavesBlock;
import net.minecraft.block.MaterialColor;
public class BlockLeaves extends LeavesBlock {
public BlockLeaves(MaterialColor color) {
super(FabricBlockSettings.copyOf(Blocks.OAK_LEAVES).materialColor(color));
}
}