NaturesAura/src/main/java/de/ellpeck/naturesaura/proxy/ServerProxy.java

41 lines
824 B
Java
Raw Normal View History

2018-10-13 20:35:18 +02:00
package de.ellpeck.naturesaura.proxy;
2019-11-04 19:08:49 +01:00
import net.minecraftforge.fml.event.lifecycle.FMLCommonSetupEvent;
2018-10-13 20:35:18 +02:00
public class ServerProxy implements IProxy {
@Override
2019-11-04 19:08:49 +01:00
public void preInit(FMLCommonSetupEvent event) {
2018-10-13 20:35:18 +02:00
}
@Override
2019-11-04 19:08:49 +01:00
public void init(FMLCommonSetupEvent event) {
2018-10-13 20:35:18 +02:00
}
@Override
2019-11-04 19:08:49 +01:00
public void postInit(FMLCommonSetupEvent event) {
2018-10-13 20:35:18 +02:00
}
@Override
2018-11-13 00:36:47 +01:00
public void spawnMagicParticle(double posX, double posY, double posZ, double motionX, double motionY, double motionZ, int color, float scale, int maxAge, float gravity, boolean collision, boolean fade) {
2018-10-13 20:35:18 +02:00
}
2019-02-19 17:23:03 +01:00
@Override
public void setParticleDepth(boolean depth) {
}
@Override
public void setParticleSpawnRange(int range) {
}
2020-01-23 19:20:47 +01:00
2020-02-28 15:36:12 +01:00
@Override
public void setParticleCulling(boolean cull) {
}
2018-10-13 20:35:18 +02:00
}