summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/events
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-07-25 03:36:16 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-07-25 03:36:16 +0200
commit4acfc5313cb68d28167c4fe4c91ad7666befc677 (patch)
treeabe83581a533a06d8063601d3142059a1c344f92 /src/main/java/at/hannibal2/skyhanni/events
parente2c7746ab27d8abdfef3e93743ed243a68469192 (diff)
downloadskyhanni-4acfc5313cb68d28167c4fe4c91ad7666befc677.tar.gz
skyhanni-4acfc5313cb68d28167c4fe4c91ad7666befc677.tar.bz2
skyhanni-4acfc5313cb68d28167c4fe4c91ad7666befc677.zip
Show locations of inactive Blood Effigy
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/events')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/events/LorenzWorldSwitchEvent.kt3
-rw-r--r--src/main/java/at/hannibal2/skyhanni/events/ScoreboardChangeEvent.kt3
-rw-r--r--src/main/java/at/hannibal2/skyhanni/events/ScoreboardRawChangeEvent.kt3
3 files changed, 9 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/events/LorenzWorldSwitchEvent.kt b/src/main/java/at/hannibal2/skyhanni/events/LorenzWorldSwitchEvent.kt
new file mode 100644
index 000000000..503e0fd3c
--- /dev/null
+++ b/src/main/java/at/hannibal2/skyhanni/events/LorenzWorldSwitchEvent.kt
@@ -0,0 +1,3 @@
+package at.hannibal2.skyhanni.events
+
+class LorenzWorldSwitchEvent() : LorenzEvent() \ No newline at end of file
diff --git a/src/main/java/at/hannibal2/skyhanni/events/ScoreboardChangeEvent.kt b/src/main/java/at/hannibal2/skyhanni/events/ScoreboardChangeEvent.kt
new file mode 100644
index 000000000..c2976629f
--- /dev/null
+++ b/src/main/java/at/hannibal2/skyhanni/events/ScoreboardChangeEvent.kt
@@ -0,0 +1,3 @@
+package at.hannibal2.skyhanni.events
+
+class ScoreboardChangeEvent(val oldList: List<String>, val newList: List<String>): LorenzEvent() \ No newline at end of file
diff --git a/src/main/java/at/hannibal2/skyhanni/events/ScoreboardRawChangeEvent.kt b/src/main/java/at/hannibal2/skyhanni/events/ScoreboardRawChangeEvent.kt
new file mode 100644
index 000000000..6f7301701
--- /dev/null
+++ b/src/main/java/at/hannibal2/skyhanni/events/ScoreboardRawChangeEvent.kt
@@ -0,0 +1,3 @@
+package at.hannibal2.skyhanni.events
+
+class ScoreboardRawChangeEvent(val oldList: List<String>, val newList: List<String>): LorenzEvent() \ No newline at end of file