Advertisement
TitanChase

Untitled

Mar 11th, 2017
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. public class FactionsBlocks extends CoreBlocks
  2. {
  3. public static final CoreBlock Faction = new BlockFaction(Names.Blocks.Faction);
  4. public static final CoreBlock House = new BlockHouse(Names.Blocks.House);
  5. public static final CoreBlock Blacksmith = new BlockBlacksmith(Names.Blocks.Blacksmith);
  6.  
  7. public static void init()
  8. {
  9. register(Faction);
  10. register(House);
  11. register(Blacksmith);
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement