VoidPlugin/VoidOp/src/main/kotlin/nl/voidcorp/opplugin/StageKeeper.kt

12 lines
360 B
Kotlin

package nl.voidcorp.opplugin
import org.jetbrains.exposed.dao.EntityID
import org.jetbrains.exposed.dao.IntEntity
import org.jetbrains.exposed.dao.IntEntityClass
class StageKeeper(id: EntityID<Int>) : IntEntity(id) {
companion object : IntEntityClass<StageKeeper>(StageKeepers)
var stage by StageKeepers.stage
var player by StageKeepers.player
}