pick 97420a31d The big reformat of 2020
This commit is contained in:
@@ -18,7 +18,6 @@
|
||||
|
||||
package appeng.core;
|
||||
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Random;
|
||||
|
||||
@@ -36,32 +35,32 @@ import appeng.client.ActionKey;
|
||||
import appeng.client.EffectType;
|
||||
import appeng.core.sync.AppEngPacket;
|
||||
|
||||
public abstract class CommonHelper {
|
||||
|
||||
public abstract class CommonHelper
|
||||
{
|
||||
public abstract World getWorld();
|
||||
|
||||
public abstract World getWorld();
|
||||
public abstract void bindTileEntitySpecialRenderer(Class<? extends TileEntity> tile, AEBaseBlock blk);
|
||||
|
||||
public abstract void bindTileEntitySpecialRenderer( Class<? extends TileEntity> tile, AEBaseBlock blk );
|
||||
public abstract List<? extends PlayerEntity> getPlayers();
|
||||
|
||||
public abstract List<? extends PlayerEntity> getPlayers();
|
||||
public abstract void sendToAllNearExcept(PlayerEntity p, double x, double y, double z, double dist, World w,
|
||||
AppEngPacket packet);
|
||||
|
||||
public abstract void sendToAllNearExcept( PlayerEntity p, double x, double y, double z, double dist, World w, AppEngPacket packet );
|
||||
public abstract void spawnEffect(EffectType effect, World world, double posX, double posY, double posZ,
|
||||
Object extra);
|
||||
|
||||
public abstract void spawnEffect( EffectType effect, World world, double posX, double posY, double posZ, Object extra );
|
||||
public abstract boolean shouldAddParticles(Random r);
|
||||
|
||||
public abstract boolean shouldAddParticles( Random r );
|
||||
public abstract RayTraceResult getRTR();
|
||||
|
||||
public abstract RayTraceResult getRTR();
|
||||
public abstract void postInit();
|
||||
|
||||
public abstract void postInit();
|
||||
public abstract CableRenderMode getRenderMode();
|
||||
|
||||
public abstract CableRenderMode getRenderMode();
|
||||
public abstract void triggerUpdates();
|
||||
|
||||
public abstract void triggerUpdates();
|
||||
public abstract void updateRenderMode(PlayerEntity player);
|
||||
|
||||
public abstract void updateRenderMode( PlayerEntity player );
|
||||
|
||||
public abstract boolean isActionKey( @Nonnull final ActionKey key, InputMappings.Input input );
|
||||
public abstract boolean isActionKey(@Nonnull final ActionKey key, InputMappings.Input input);
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user