pick 97420a31d The big reformat of 2020

This commit is contained in:
yueh
2020-06-16 21:41:28 +02:00
parent 5304b3febe
commit 5225ea426b
2252 changed files with 95466 additions and 118582 deletions
+15 -16
View File
@@ -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);
}