aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2024-02-19 23:46:19 +0100
committerLinnea Gräf <nea@nea.moe>2024-02-19 23:46:19 +0100
commit5db2ea9e6c19c7c5054499ee7ca020546949df3d (patch)
tree44e6df4b1650b312911c577bc430fa44d104ad6e /src/main/resources
parent128b8db7ad7e8633af231d6f547aca1eed3c1e95 (diff)
downloadSkyHanni-feat/sackmonitor.tar.gz
SkyHanni-feat/sackmonitor.tar.bz2
SkyHanni-feat/sackmonitor.zip
Add sack HUDfeat/sackmonitor
Diffstat (limited to 'src/main/resources')
-rw-r--r--src/main/resources/assets/skyhanni/gui/sackhudeditor.xml44
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>