summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/events
diff options
context:
space:
mode:
authorLorenz <ESs95s3P5z8Pheb>2022-07-15 00:33:59 +0200
committerLorenz <ESs95s3P5z8Pheb>2022-07-15 00:33:59 +0200
commitcf42c5be22ef2502bfc11e809d989820fe2eefaf (patch)
treea2da1b1a20dc7f566a0a5413adab54c5fbfc5952 /src/main/java/at/hannibal2/skyhanni/events
parent0fa564604a99400e91385dec37753345174c45e0 (diff)
downloadskyhanni-cf42c5be22ef2502bfc11e809d989820fe2eefaf.tar.gz
skyhanni-cf42c5be22ef2502bfc11e809d989820fe2eefaf.tar.bz2
skyhanni-cf42c5be22ef2502bfc11e809d989820fe2eefaf.zip
add hypixel api
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/events')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/events/ProfileApiDataLoadedEvent.kt5
-rw-r--r--src/main/java/at/hannibal2/skyhanni/events/ProfileJoinEvent.kt3
2 files changed, 8 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/events/ProfileApiDataLoadedEvent.kt b/src/main/java/at/hannibal2/skyhanni/events/ProfileApiDataLoadedEvent.kt
new file mode 100644
index 000000000..12640898f
--- /dev/null
+++ b/src/main/java/at/hannibal2/skyhanni/events/ProfileApiDataLoadedEvent.kt
@@ -0,0 +1,5 @@
+package at.hannibal2.skyhanni.events
+
+import com.google.gson.JsonObject
+
+class ProfileApiDataLoadedEvent(val profileData: JsonObject) : LorenzEvent() \ No newline at end of file
diff --git a/src/main/java/at/hannibal2/skyhanni/events/ProfileJoinEvent.kt b/src/main/java/at/hannibal2/skyhanni/events/ProfileJoinEvent.kt
new file mode 100644
index 000000000..ebf1e7b6d
--- /dev/null
+++ b/src/main/java/at/hannibal2/skyhanni/events/ProfileJoinEvent.kt
@@ -0,0 +1,3 @@
+package at.hannibal2.skyhanni.events
+
+class ProfileJoinEvent(val name: String): LorenzEvent()