cpw.mods.fml.common
Annotation Type Mod.Block


@Retention(value=RUNTIME)
@Target(value=FIELD)
public static @interface Mod.Block

Populate the annotated field with an instance of the Block as specified

Author:
cpw

Required Element Summary
 String name
          The block's name
 
Optional Element Summary
 Class<?> itemTypeClass
          The associated ItemBlock subtype for the item (can be null for an ItemBlock)
 

Element Detail

name

public abstract String name
The block's name

itemTypeClass

public abstract Class<?> itemTypeClass
The associated ItemBlock subtype for the item (can be null for an ItemBlock)

Default:
net.minecraft.item.ItemBlock.class