Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // CODE FOR FIRST TUTORIAL
- ackage Tutorial;
- import cpw.mods.fml.common.Mod;
- import cpw.mods.fml.common.Mod.Init;
- import cpw.mods.fml.common.Mod.PreInit;
- import cpw.mods.fml.common.event.FMLInitializationEvent;
- import cpw.mods.fml.common.event.FMLPreInitializationEvent;
- import cpw.mods.fml.common.network.NetworkMod;
- @Mod(modid = "Tutorial", name = "Minecraft Forge Tutorial", version = "v1.0")
- @NetworkMod(clientSideRequired = true, serverSideRequired = true)
- public class mod_tutorial
- {
- @PreInit
- public void initConfig(FMLPreInitializationEvent fpe)
- {
- }
- @Init
- public void load(FMLInitializationEvent fie)
- {
- registeringBlocks();
- itemNames();
- recipes();
- smelting();
- }
- public void registeringBlocks()
- {
- //BLOCKS
- }
- public void blockNames()
- {
- }
- public void itemNames()
- {
- }
- public void recipes()
- {
- }
- public void smelting()
- {
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment