Item & Block registry
This commit is contained in:
parent
89ddb7cf33
commit
ebbb10d972
6 changed files with 110 additions and 1 deletions
11
src/main/java/ru/betterend/blocks/BlockWetMycelium.java
Normal file
11
src/main/java/ru/betterend/blocks/BlockWetMycelium.java
Normal file
|
@ -0,0 +1,11 @@
|
|||
package ru.betterend.blocks;
|
||||
|
||||
import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings;
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.block.Blocks;
|
||||
|
||||
public class BlockWetMycelium extends Block {
|
||||
public BlockWetMycelium() {
|
||||
super(FabricBlockSettings.copyOf(Blocks.END_STONE));
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue