aether-legacy/src/main/java/com/gildedgames/the_aether/CommonProxy.java

28 lines
704 B
Java
Raw Normal View History

2020-08-14 08:29:22 +02:00
package com.gildedgames.the_aether;
2016-12-17 16:28:16 +01:00
2023-03-13 19:53:26 +01:00
import cpw.mods.fml.common.FMLCommonHandler;
2016-12-17 16:28:16 +01:00
import net.minecraft.entity.player.EntityPlayer;
import net.minecraftforge.common.MinecraftForge;
2018-12-07 06:32:48 +01:00
public class CommonProxy {
2023-03-13 19:53:26 +01:00
public static int berryBushRenderID;
2016-12-17 16:28:16 +01:00
2023-03-13 19:53:26 +01:00
public static int treasureChestRenderID;
2018-12-07 05:33:43 +01:00
2023-03-13 19:53:26 +01:00
public static int aetherFlowerRenderID;
2016-12-17 16:28:16 +01:00
2023-03-13 19:53:26 +01:00
public void init() {}
2016-12-17 16:28:16 +01:00
2023-03-13 19:53:26 +01:00
public void openSunAltar() {}
2016-12-17 16:28:16 +01:00
2023-03-13 19:53:26 +01:00
public void sendMessage(EntityPlayer player, String text) {}
2017-12-24 05:48:46 +01:00
2023-03-13 19:53:26 +01:00
public EntityPlayer getPlayer() {
return null;
}
2018-12-07 05:33:43 +01:00
2023-03-13 19:53:26 +01:00
public static void registerEvent(Object event) {
FMLCommonHandler.instance().bus().register(event);
MinecraftForge.EVENT_BUS.register(event);
}
2016-12-17 16:28:16 +01:00
}