Update wiki to match gradle conversion authored by Derek Williams's avatar Derek Williams
......@@ -2,7 +2,7 @@
For this wiki article we will demonstrate adding Quests and Highscore to the dropdown menu, assuming all of their UIs have already been made.
## Creating The Drop-down
Within GameClient/src/view/screen/menu/MenuUI.java, first add the label(s) of the element(s) you wish to add to the drop-down as instance variable constants (QUEST_BUTTON_TEXT and HIGHSCORE_BUTTON_TEXT below. Then, add the following method to the class, where your new constants will be set along with the preexisting ones:
Within GameClient/src/main/java/view/screen/menu/MenuUI.java, first add the label(s) of the element(s) you wish to add to the drop-down as instance variable constants (QUEST_BUTTON_TEXT and HIGHSCORE_BUTTON_TEXT below. Then, add the following method to the class, where your new constants will be set along with the preexisting ones:
```java
/**
* Adds the dropown menu to the UI
......@@ -103,8 +103,3 @@ The drop-down will be added to the table at the top of the screen
Displaying the items inside the drop-down
![image](uploads/ecd3664ee2b550770c6316c56c93a6af/image.png)