12 lines
236 B
Kotlin
12 lines
236 B
Kotlin
package moe.nea.firmament
|
|
|
|
import moe.nea.firmament.util.compatloader.CompatMeta
|
|
import moe.nea.firmament.util.compatloader.ICompatMeta
|
|
|
|
@CompatMeta
|
|
object Compat : ICompatMeta {
|
|
override fun shouldLoad(): Boolean {
|
|
return true
|
|
}
|
|
}
|