Introduce compat source sets and move all kotlin sources to the main directory [no changelog]
9 lines
253 B
Kotlin
9 lines
253 B
Kotlin
|
|
package moe.nea.firmament.events
|
|
|
|
import moe.nea.firmament.features.FirmamentFeature
|
|
|
|
data class FeaturesInitializedEvent(val features: List<FirmamentFeature>) : FirmamentEvent() {
|
|
companion object : FirmamentEventBus<FeaturesInitializedEvent>()
|
|
}
|