Skip to content

Instantly share code, notes, and snippets.

@slenderPanda
Created February 22, 2016 15:10
Show Gist options
  • Save slenderPanda/72a14b639ab1e2798728 to your computer and use it in GitHub Desktop.
Save slenderPanda/72a14b639ab1e2798728 to your computer and use it in GitHub Desktop.
package sl3nd3rpanda.mod;
import com.sun.jmx.remote.internal.ProxyRef;
import net.minecraftforge.fml.common.event.FMLInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
public class ClientProxy extends CommonProxy
{
public void preInit(FMLPreInitializationEvent e)
{
super.preInit(e);
}
public void init(FMLInitializationEvent e)
{
super.init(e);
Main.unstable_metal.RegisterRenderer("unstable_metal");
Main.unstable_ore.RegisterRenderer("unstable_ore");
}
public void postInit(FMLPostInitializationEvent e)
{
super.postInit(e);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment