diff options
Diffstat (limited to 'src/main/resources')
| -rw-r--r-- | src/main/resources/assets/skyhanni/gui/sackhudeditor.xml | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/src/main/resources/assets/skyhanni/gui/sackhudeditor.xml b/src/main/resources/assets/skyhanni/gui/sackhudeditor.xml new file mode 100644 index 000000000..c77c695f0 --- /dev/null +++ b/src/main/resources/assets/skyhanni/gui/sackhudeditor.xml @@ -0,0 +1,44 @@ +<Root xmlns="http://notenoughupdates.org/moulconfig" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://notenoughupdates.org/moulconfig https://raw.githubusercontent.com/NotEnoughUpdates/MoulConfig/master/MoulConfig.xsd"> + <Gui> + <Column> + <Scale scale="2"> + <Center> + <Row> + <Text text="@update"/> + <Text text="Sack HUD"/> + </Row> + </Center> + </Scale> + <Spacer height="3"/> + <ScrollPanel width="300" height="200"> + <Array data="@entries"> + <Row> + <Button onClick="@delete"> + <Text text="§cX"/> + </Button> + <Button onClick="@moveUp"> + <Text text="↑"/> + </Button> + <Button onClick="@moveDown"> + <Text text="↓"/> + </Button> + <ItemStack value="@icon"/> + <Text text="@name" width="160"/> + </Row> + </Array> + </ScrollPanel> + <TextField value="@searchField" width="280"/> + <ScrollPanel width="300" height="100"> + <Array data="@results"> + <Button onClick="@addToList"> + <Row> + <ItemStack value="@icon"/> + <Text text="@name"/> + </Row> + </Button> + </Array> + </ScrollPanel> + </Column> + </Gui> +</Root> |
