Blue vine
This commit is contained in:
parent
62947e9fc1
commit
a968b9bb23
38 changed files with 722 additions and 20 deletions
17
src/main/java/ru/betterend/blocks/BlockBlueVine.java
Normal file
17
src/main/java/ru/betterend/blocks/BlockBlueVine.java
Normal file
|
@ -0,0 +1,17 @@
|
|||
package ru.betterend.blocks;
|
||||
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.block.BlockState;
|
||||
import net.minecraft.state.StateManager;
|
||||
import net.minecraft.state.property.EnumProperty;
|
||||
import ru.betterend.blocks.BlockProperties.TripleShape;
|
||||
import ru.betterend.blocks.basis.BlockUpDownPlant;
|
||||
|
||||
public class BlockBlueVine extends BlockUpDownPlant {
|
||||
public static final EnumProperty<TripleShape> SHAPE = BlockProperties.TRIPLE_SHAPE;
|
||||
|
||||
@Override
|
||||
protected void appendProperties(StateManager.Builder<Block, BlockState> stateManager) {
|
||||
stateManager.add(SHAPE);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue