mirror of
https://github.com/Theta-Dev/ConstructionWand.git
synced 2026-04-01 11:58:00 +02:00
20 lines
482 B
Java
20 lines
482 B
Java
package thetadev.constructionwand.job;
|
|
|
|
import net.minecraft.block.BlockState;
|
|
import net.minecraft.item.BlockItem;
|
|
import net.minecraft.util.math.BlockPos;
|
|
|
|
public class PlaceSnapshot
|
|
{
|
|
public BlockState block;
|
|
public final BlockState supportingBlock;
|
|
public final BlockPos pos;
|
|
public final BlockItem item;
|
|
|
|
public PlaceSnapshot(BlockPos pos, BlockState supportingBlock, BlockItem item)
|
|
{
|
|
this.pos = pos;
|
|
this.supportingBlock = supportingBlock;
|
|
this.item = item;
|
|
}
|
|
}
|