dialog rename working good enough

This commit is contained in:
alexcrea 2026-05-21 19:07:15 +02:00
parent 05951d0ace
commit 31f9e7e281
Signed by: alexcrea
GPG key ID: E346CD16413450E3
9 changed files with 276 additions and 27 deletions

View file

@ -0,0 +1,14 @@
package xyz.alexcrea.cuanvil.dialog
import org.bukkit.entity.HumanEntity
import org.bukkit.event.inventory.PrepareAnvilEvent
interface AnvilRenameDialog {
fun canSendDialog(): Boolean
fun tryShowDialog(player: HumanEntity, event: PrepareAnvilEvent)
fun closeInventory(player: HumanEntity)
}