Exemplo n.º 1
0
 @Override
 public void initialise() {
   ModIcons.loadIcons();
   guiManager = CoreRegistry.get(GUIManager.class);
   blockItemFactory = new BlockItemFactory(entityManager);
   // experimental popup menu for the minion command tool
   guiManager.registerWindow("activeminiion", UIActiveMinion.class);
   // ui to create summonable cards
   guiManager.registerWindow("cardbook", UICardBook.class);
   // ui to manage summoned minions, selecting one sets it active!
   guiManager.registerWindow("oreobook", UIScreenBookOreo.class);
   // ui to manage zones
   guiManager.registerWindow("zonebook", UIZoneBook.class);
   createZoneList();
   initRecipes();
 }