Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.freemanovci.healer;
- import java.io.IOException;
- import cpw.mods.fml.common.Mod;
- import cpw.mods.fml.common.Mod.EventHandler;
- import cpw.mods.fml.common.event.FMLInitializationEvent;
- import io.netty.buffer.ByteBuf;
- import mekanism.common.*;
- import mekanism.common.base.IModule;
- @Mod(modid = Main.MODID,version=Main.VERSION,name=Main.NAME,canBeDeactivated=true,dependencies = "required-after:Mekanism", guiFactory = "mekanism.tools.client.gui.ToolsGuiFactory")
- public class Main implements IModule{
- public static final String MODID = "healer";
- public static final String VERSION = "1.0";
- public static final String NAME = "Atomic Cell Restorer";
- public static final String DESCRIPTION = "Never worry about low health with enough power anymore.";
- @Override
- public String getName() {
- // TODO Auto-generated method stub
- return null;
- }
- @Override
- public void writeConfig(ByteBuf dataStream) throws IOException {
- // TODO Auto-generated method stub
- }
- @Override
- public void readConfig(ByteBuf dataStream) throws IOException {
- // TODO Auto-generated method stub
- }
- @Override
- public Version getVersion() {
- // TODO Auto-generated method stub
- return null;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment