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

21 lines
598 B
Java
Raw Normal View History

2018-10-13 20:35:18 +02:00
package de.ellpeck.naturesaura.proxy;
2024-02-03 14:56:07 +01:00
import net.neoforged.fml.event.lifecycle.FMLCommonSetupEvent;
2018-10-13 20:35:18 +02:00
public interface IProxy {
2021-12-06 14:38:12 +01:00
2019-11-04 19:08:49 +01:00
void preInit(FMLCommonSetupEvent event);
2018-10-13 20:35:18 +02:00
2019-11-04 19:08:49 +01:00
void init(FMLCommonSetupEvent event);
2018-10-13 20:35:18 +02:00
2019-11-04 19:08:49 +01:00
void postInit(FMLCommonSetupEvent event);
2018-10-13 20:35:18 +02:00
2018-11-13 00:36:47 +01:00
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
void setParticleDepth(boolean depth);
void setParticleSpawnRange(int range);
2020-01-23 19:20:47 +01:00
2020-02-28 15:36:12 +01:00
void setParticleCulling(boolean cull);
2018-10-13 20:35:18 +02:00
}