Some placement filters

This commit is contained in:
Frank 2022-06-02 11:17:07 +02:00
parent 4321017c25
commit aa4133fad2
12 changed files with 318 additions and 47 deletions

View file

@ -0,0 +1,11 @@
package org.betterx.bclib.interfaces;
import net.minecraft.world.level.block.Mirror;
import net.minecraft.world.level.block.Rotation;
public interface BCLPlacementContext {
Rotation bcl_getRotation();
void bcl_setRotation(Rotation bcl_rotation);
Mirror bcl_getMirror();
void bcl_setMirror(Mirror bcl_mirror);
}