10 lines
355 B
Kotlin
10 lines
355 B
Kotlin
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>()
|
|
}
|