Added missing @Override annotations

This commit is contained in:
yueh
2016-09-17 17:00:10 +02:00
parent 2e7efb3660
commit 035dc244ff
12 changed files with 15 additions and 0 deletions
@@ -39,21 +39,25 @@ public class UVLightmapJsonTest
final AxisAlignedBB box = new AxisAlignedBB( 0.25, 0, 7 / 16d, 0.75, 1, 9 / 16d );
@Override
public boolean isFullBlock( IBlockState state )
{
return false;
}
@Override
public boolean isOpaqueCube( IBlockState state )
{
return false;
}
@Override
public AxisAlignedBB getBoundingBox( IBlockState state, IBlockAccess source, BlockPos pos )
{
return box;
}
@Override
public BlockRenderLayer getBlockLayer()
{
return BlockRenderLayer.CUTOUT;