com.skillw.attsystem.internal.manager.RealizerManagerImpl.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of AttributeSystem Show documentation
Show all versions of AttributeSystem Show documentation
Bukkit Attribute Engine Plugin.
The newest version!
package com.skillw.attsystem.internal.manager
import com.skillw.attsystem.api.manager.RealizerManager
import taboolib.common.LifeCycle
import taboolib.common.platform.Awake
object RealizerManagerImpl : RealizerManager() {
override val priority: Int = 999
@Awake(LifeCycle.DISABLE)
fun disable() {
onDisable()
}
}