NaturesAura/src/main/java/de/ellpeck/naturesaura/proxy/IProxy.java
2021-12-22 23:28:57 +01:00

21 lines
603 B
Java

package de.ellpeck.naturesaura.proxy;
import net.minecraftforge.fml.event.lifecycle.FMLCommonSetupEvent;
public interface IProxy {
void preInit(FMLCommonSetupEvent event);
void init(FMLCommonSetupEvent event);
void postInit(FMLCommonSetupEvent event);
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);
void setParticleDepth(boolean depth);
void setParticleSpawnRange(int range);
void setParticleCulling(boolean cull);
}