aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/events/DebugInstantiateEvent.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/events/DebugInstantiateEvent.kt')
-rw-r--r--src/main/kotlin/events/DebugInstantiateEvent.kt9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/main/kotlin/events/DebugInstantiateEvent.kt b/src/main/kotlin/events/DebugInstantiateEvent.kt
new file mode 100644
index 0000000..3470a8c
--- /dev/null
+++ b/src/main/kotlin/events/DebugInstantiateEvent.kt
@@ -0,0 +1,9 @@
+package moe.nea.firmament.events
+
+/**
+ * Called in a devenv after minecraft has been initialized. This event should be used to force instantiation of lazy
+ * variables (and similar late init) to cause any possible issues to materialize.
+ */
+class DebugInstantiateEvent : FirmamentEvent() {
+ companion object : FirmamentEventBus<DebugInstantiateEvent>()
+}