diff options
author | Linnea Gräf <nea@nea.moe> | 2024-11-08 17:52:10 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-11-08 17:52:10 +0100 |
commit | f6f8fef556e74f24187ad2a6296f573024a378b3 (patch) | |
tree | e6d8873e15e88c23d42b8634dad7179fbd198eec /src/main/kotlin/events | |
parent | 06534f9d09732ed29a6fa6bc48def5f7c2b0b865 (diff) | |
download | Firmament-f6f8fef556e74f24187ad2a6296f573024a378b3.tar.gz Firmament-f6f8fef556e74f24187ad2a6296f573024a378b3.tar.bz2 Firmament-f6f8fef556e74f24187ad2a6296f573024a378b3.zip |
Fix line renderer
Diffstat (limited to 'src/main/kotlin/events')
-rw-r--r-- | src/main/kotlin/events/DebugInstantiateEvent.kt | 9 |
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>() +} |