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

36 lines
667 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
import net.minecraft.entity.player.EntityPlayer;
import net.minecraftforge.common.MinecraftForge;
2018-12-07 05:33:43 +01:00
import cpw.mods.fml.common.FMLCommonHandler;
2016-12-17 16:28:16 +01:00
2018-12-07 06:32:48 +01:00
public class CommonProxy {
2016-12-17 16:28:16 +01:00
2018-12-07 05:33:43 +01:00
public static int berryBushRenderID;
2016-12-17 16:28:16 +01:00
2018-12-07 05:33:43 +01:00
public static int treasureChestRenderID;
2016-12-17 16:28:16 +01:00
2018-12-07 05:33:43 +01:00
public static int aetherFlowerRenderID;
2016-12-17 16:28:16 +01:00
2018-12-07 06:32:48 +01:00
public void init() {
2018-12-07 05:33:43 +01:00
}
2018-12-07 06:32:48 +01:00
public void openSunAltar() {
2018-12-07 05:33:43 +01:00
}
2016-12-17 16:28:16 +01:00
2018-12-07 06:32:48 +01:00
public void sendMessage(EntityPlayer player, String text) {
2016-12-17 16:28:16 +01:00
2018-12-07 05:33:43 +01:00
}
2016-12-17 16:28:16 +01:00
2018-12-07 06:32:48 +01:00
public EntityPlayer getPlayer() {
2018-12-07 05:33:43 +01:00
return null;
}
2017-12-24 05:48:46 +01:00
2018-12-07 06:32:48 +01:00
public static void registerEvent(Object event) {
2016-12-17 16:28:16 +01:00
FMLCommonHandler.instance().bus().register(event);
MinecraftForge.EVENT_BUS.register(event);
}
2018-12-07 05:33:43 +01:00
2016-12-17 16:28:16 +01:00
}