mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-05 20:59:09 +01:00
29 lines
1.1 KiB
Java
29 lines
1.1 KiB
Java
|
package de.ellpeck.naturesaura.proxy;
|
||
|
|
||
|
import de.ellpeck.naturesaura.reg.IColorProvidingBlock;
|
||
|
import de.ellpeck.naturesaura.reg.IColorProvidingItem;
|
||
|
import net.minecraft.item.ItemStack;
|
||
|
import net.minecraft.util.ResourceLocation;
|
||
|
import net.minecraft.world.World;
|
||
|
import net.minecraftforge.fml.common.event.FMLInitializationEvent;
|
||
|
import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;
|
||
|
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
|
||
|
|
||
|
public interface IProxy {
|
||
|
void preInit(FMLPreInitializationEvent event);
|
||
|
|
||
|
void init(FMLInitializationEvent event);
|
||
|
|
||
|
void postInit(FMLPostInitializationEvent event);
|
||
|
|
||
|
void registerRenderer(ItemStack stack, ResourceLocation location, String variant);
|
||
|
|
||
|
void addColorProvidingItem(IColorProvidingItem item);
|
||
|
|
||
|
void addColorProvidingBlock(IColorProvidingBlock block);
|
||
|
|
||
|
void spawnMagicParticle(World world, double posX, double posY, double posZ, double motionX, double motionY, double motionZ, int color, float scale, int maxAge, float gravity, boolean collision);
|
||
|
|
||
|
void scheduleTask(Runnable runnable);
|
||
|
}
|