2025-11-24 22:52:51 +03:00

27 lines
767 B
Java

/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* com.mojang.serialization.MapCodec
*/
package net.minecraft.world.level.block;
import com.mojang.serialization.MapCodec;
import net.minecraft.world.level.block.SkullBlock;
import net.minecraft.world.level.block.WallSkullBlock;
import net.minecraft.world.level.block.state.BlockBehaviour;
public class PlayerWallHeadBlock
extends WallSkullBlock {
public static final MapCodec<PlayerWallHeadBlock> CODEC = PlayerWallHeadBlock.simpleCodec(PlayerWallHeadBlock::new);
public MapCodec<PlayerWallHeadBlock> codec() {
return CODEC;
}
protected PlayerWallHeadBlock(BlockBehaviour.Properties properties) {
super(SkullBlock.Types.PLAYER, properties);
}
}