Init gui
()
| 71 | * Init gui |
| 72 | */ |
| 73 | public void initGui0() { |
| 74 | MinecraftFactory.getVars().updateScaledResolution(); |
| 75 | buttons.clear(); |
| 76 | textfields.clear(); |
| 77 | guiLists.clear(); |
| 78 | buttonIdLookup.clear(); |
| 79 | textFieldIdLookup.clear(); |
| 80 | checkBoxes.clear(); |
| 81 | radioCheckBoxes.clear(); |
| 82 | initGui(); |
| 83 | if (selectTextFieldAfterInit && textfields.size() > 0) |
| 84 | textfields.get(0).setSelected(true); |
| 85 | tick(); |
| 86 | } |
| 87 | |
| 88 | public abstract void initGui(); |
| 89 |
no test coverage detected