package net.minecraft.client.renderer.culling; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import net.minecraft.util.AxisAlignedBB; @SideOnly(Side.CLIENT) public interface ICamera { /** * Returns true if the bounding box is inside all 6 clipping planes, otherwise returns false. */ boolean isBoundingBoxInFrustum(AxisAlignedBB var1); void setPosition(double var1, double var3, double var5); }