Added more Behaviours

This commit is contained in:
Frank 2023-05-24 21:07:51 +02:00
parent 8777723bb8
commit f69c1c8588
8 changed files with 103 additions and 4 deletions

View file

@ -1,5 +1,6 @@
package org.betterx.bclib.blocks;
import org.betterx.bclib.behaviours.interfaces.BehaviourWood;
import org.betterx.bclib.client.models.BasePatterns;
import org.betterx.bclib.client.models.ModelsHelper;
import org.betterx.bclib.client.models.PatternsHelper;
@ -124,7 +125,7 @@ public abstract class BaseWallBlock extends WallBlock implements BlockModelProvi
return builder.build();
}
public static class Stone extends BaseWallBlock {
public static class Stone extends BaseWallBlock implements BehaviourWood {
public Stone(Block source) {
super(source);
}