Skip to content

Instantly share code, notes, and snippets.

/EinMod Secret

Created March 31, 2014 21:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/36a6b786e60cbb8c23e6 to your computer and use it in GitHub Desktop.
Save anonymous/36a6b786e60cbb8c23e6 to your computer and use it in GitHub Desktop.
package com.Einhaender.EinMod;
import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.Mod.EventHandler;
import cpw.mods.fml.common.event.FMLInitializationEvent;
import cpw.mods.fml.common.registry.GameRegistry;
@Mod(modid = EinMod.MODID, version = EinMod.VERSION)
public class EinMod
{
public static final String MODID = "EinMod";
public static final String VERSION = "0.1";
@EventHandler
public void init(FMLInitializationEvent event)
{
GameRegistry.registerWorldGenerator (new SkyblockGenerator (), 10);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment