com.skillw.asahi.api.member.context.LoopContext.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Pouvoir Show documentation
Show all versions of Pouvoir Show documentation
Bukkit Script Engine Plugin.
The newest version!
package com.skillw.asahi.api.member.context
interface LoopContext {
val label: String
var isBreak: Boolean
var isContinue: Boolean
val parent: LoopContext?
val subLoops: HashSet
fun searchLabel(label: String): LoopContext
enum class Result {
BREAK, CONTINUE
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy