Flower pots

This commit is contained in:
paulevsGitch 2021-07-11 18:16:55 +03:00
parent 13e5e9e088
commit e41fd592c7
14 changed files with 135 additions and 33 deletions

View file

@ -1,3 +1,7 @@
package ru.betterend.interfaces;
public interface PottablePlant {}
import net.minecraft.world.level.block.Block;
public interface PottablePlant {
boolean canPlantOn(Block block);
}