com.skillw.pouvoir.api.feature.anticheat.BypassCheat.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.
package com.skillw.pouvoir.api.feature.anticheat
import com.skillw.pouvoir.Pouvoir.antiCheatManager
import com.skillw.pouvoir.api.plugin.map.component.Registrable
import org.bukkit.entity.Player
/**
* @className BypassCheat
*
* @author Glom
* @date 2023/8/6 20:54 Copyright 2024 Glom.
*/
interface BypassCheat : Registrable {
fun bypass(player: Player)
fun recover(player: Player) {}
override fun register() {
antiCheatManager.register(this)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy