Code/net/minecraft/world/level/BlockEventData.java

7 lines
202 B
Java
Raw Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.world.level;
import net.minecraft.core.BlockPos;
import net.minecraft.world.level.block.Block;
public record BlockEventData(BlockPos pos, Block block, int paramA, int paramB) {
}