Guest User

Untitled

a guest
Jun 26th, 2016
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. public class ConfigGui extends GuiConfig {
  2.  
  3. public ConfigGui(GuiScreen parent) {
  4. super(parent,
  5. getConfigElements(),
  6. "mm", false, false, "MCrafterzz Mod Config");
  7. }
  8.  
  9. private static List<IConfigElement> getConfigElements() {
  10. List<IConfigElement> list = new ArrayList<IConfigElement>();
  11.  
  12. list.add(new ConfigElement(new ConfigCategory("configcategory.worldgen")));
  13. list.add(new ConfigElement(new ConfigCategory("configcategory.crafting")));
  14.  
  15. return list;
  16. }
  17.  
  18. }
Add Comment
Please, Sign In to add comment