Err too much.
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
package appeng.parts;
|
||||
|
||||
import java.util.EnumSet;
|
||||
import java.util.Random;
|
||||
|
||||
import net.minecraft.entity.Entity;
|
||||
import net.minecraft.entity.EntityLivingBase;
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.util.Vec3;
|
||||
import net.minecraft.world.World;
|
||||
import net.minecraftforge.common.ForgeDirection;
|
||||
import appeng.api.parts.SelectedPart;
|
||||
|
||||
public interface ICableBusContainer
|
||||
{
|
||||
|
||||
int isProvidingStrongPower(ForgeDirection opposite);
|
||||
|
||||
int isProvidingWeakPower(ForgeDirection opposite);
|
||||
|
||||
boolean canConnectRedstone(EnumSet<ForgeDirection> of);
|
||||
|
||||
void onEntityCollision(Entity e);
|
||||
|
||||
boolean activate(EntityPlayer player, Vec3 vecFromPool);
|
||||
|
||||
void onNeighborChanged();
|
||||
|
||||
boolean isSolidOnSide(ForgeDirection side);
|
||||
|
||||
boolean isEmpty();
|
||||
|
||||
SelectedPart selectPart(Vec3 v3);
|
||||
|
||||
boolean recolourBlock(ForgeDirection side, int colour);
|
||||
|
||||
boolean isLadder(EntityLivingBase entity);
|
||||
|
||||
void randomDisplayTick(World world, int x, int y, int z, Random r);
|
||||
|
||||
int getLightValue();
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user