001 package net.minecraft.src;
002
003 import cpw.mods.fml.common.Side;
004 import cpw.mods.fml.common.asm.SideOnly;
005
006 @SideOnly(Side.CLIENT)
007 public interface ICamera
008 {
009 /**
010 * Returns true if the bounding box is inside all 6 clipping planes, otherwise returns false.
011 */
012 boolean isBoundingBoxInFrustum(AxisAlignedBB var1);
013
014 void setPosition(double var1, double var3, double var5);
015 }