reformatted all src files (#141)
This commit is contained in:
@@ -19,29 +19,25 @@
|
||||
package appeng.entity;
|
||||
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import net.minecraft.entity.Entity;
|
||||
import net.minecraft.entity.item.EntityItem;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.util.math.AxisAlignedBB;
|
||||
import net.minecraft.world.World;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public abstract class AEBaseEntityItem extends EntityItem
|
||||
{
|
||||
public AEBaseEntityItem( final World world )
|
||||
{
|
||||
super( world );
|
||||
}
|
||||
|
||||
public AEBaseEntityItem( final World world, final double x, final double y, final double z, final ItemStack stack )
|
||||
{
|
||||
super( world, x, y, z, stack );
|
||||
}
|
||||
public abstract class AEBaseEntityItem extends EntityItem {
|
||||
public AEBaseEntityItem(final World world) {
|
||||
super(world);
|
||||
}
|
||||
|
||||
protected List<Entity> getCheckedEntitiesWithinAABBExcludingEntity( final AxisAlignedBB region )
|
||||
{
|
||||
return this.world.getEntitiesWithinAABBExcludingEntity( this, region );
|
||||
}
|
||||
public AEBaseEntityItem(final World world, final double x, final double y, final double z, final ItemStack stack) {
|
||||
super(world, x, y, z, stack);
|
||||
}
|
||||
|
||||
protected List<Entity> getCheckedEntitiesWithinAABBExcludingEntity(final AxisAlignedBB region) {
|
||||
return this.world.getEntitiesWithinAABBExcludingEntity(this, region);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user