11 lines
236 B
Kotlin
11 lines
236 B
Kotlin
package net.hareworks.ghostdisplays.api.audience
|
|
|
|
import org.bukkit.entity.Player
|
|
|
|
/**
|
|
* Displayを視認させる対象かどうかを判定する述語。
|
|
*/
|
|
fun interface AudiencePredicate {
|
|
fun test(player: Player): Boolean
|
|
}
|