Class mod_Stackables

java.lang.Object
  extended by BaseMod
      extended by mod_Stackables

public class mod_Stackables
extends BaseMod


Field Summary
static int boats
           
static int doors
           
static int food
           
static int minecarts
           
static int saddles
           
static int signs
           
 
Constructor Summary
mod_Stackables()
           
 
Method Summary
 java.lang.String getVersion()
          Required override that informs users the version of this mod.
 void load()
          Required override.
 
Methods inherited from class BaseMod
addFuel, addRenderer, dispenseEntity, generateNether, generateSurface, getName, getPriorities, keyboardEvent, modsLoaded, onItemPickup, onTickInGame, onTickInGUI, registerAnimation, renderInvBlock, renderWorldBlock, takenFromCrafting, takenFromFurnace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

minecarts

public static int minecarts

boats

public static int boats

doors

public static int doors

signs

public static int signs

saddles

public static int saddles

food

public static int food
Constructor Detail

mod_Stackables

public mod_Stackables()
Method Detail

getVersion

public java.lang.String getVersion()
Description copied from class: BaseMod
Required override that informs users the version of this mod. Used in console and error reports.

Specified by:
getVersion in class BaseMod
Returns:
Version version.

load

public void load()
Description copied from class: BaseMod
Required override. Put EVERYTHING that has any relation to minecraft in here that needs to be added to the game when loaded. This includes blocks and items.

Specified by:
load in class BaseMod