kr.summitsystems.springbukkit.view.ViewLifecycle.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of view Show documentation
Show all versions of view Show documentation
Springframework based Bukkit plugin development kit.
The newest version!
package kr.summitsystems.springbukkit.view
import org.bukkit.entity.Player
interface ViewLifecycle {
fun onCreate(context: C) {}
fun onRender(viewer: Player) {}
fun onDispose() {}
}