diff options
author | nea <romangraef@gmail.com> | 2022-09-10 03:48:03 +0200 |
---|---|---|
committer | nea <romangraef@gmail.com> | 2022-09-10 03:48:03 +0200 |
commit | ec66c82198fe2d61d699d553c1254f08b43fcc65 (patch) | |
tree | b5d4efaf5d6d6699357c3afb1d6920d89d51b3b8 /src/main/kotlin/moe/nea/notenoughupdates/features/world | |
parent | d9353ff54c20a08e4e078e0190fc1f364b08a2d1 (diff) | |
download | firmament-ec66c82198fe2d61d699d553c1254f08b43fcc65.tar.gz firmament-ec66c82198fe2d61d699d553c1254f08b43fcc65.tar.bz2 firmament-ec66c82198fe2d61d699d553c1254f08b43fcc65.zip |
Move Eventhandling around.
I still want to use fabric still "array backed" events, but these here are just a bit easier to use from kotlin.
Diffstat (limited to 'src/main/kotlin/moe/nea/notenoughupdates/features/world')
-rw-r--r-- | src/main/kotlin/moe/nea/notenoughupdates/features/world/FairySouls.kt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea/notenoughupdates/features/world/FairySouls.kt b/src/main/kotlin/moe/nea/notenoughupdates/features/world/FairySouls.kt new file mode 100644 index 0000000..b928f3d --- /dev/null +++ b/src/main/kotlin/moe/nea/notenoughupdates/features/world/FairySouls.kt @@ -0,0 +1,12 @@ +package moe.nea.notenoughupdates.features.world + +import moe.nea.notenoughupdates.features.NEUFeature + +object FairySouls : NEUFeature { + override val name: String get() = "Fairy Souls" + override val identifier: String get() = "fairy-souls" + + override fun onLoad() { + + } +} |