All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.ZeronDev.gui.GuiManager.kt Maven / Gradle / Ivy

There is a newer version: 2.7.2
Show newest version
package io.github.ZeronDev.gui

import org.bukkit.entity.Player
import org.bukkit.inventory.Inventory

object GuiManager {
    fun newInventory(title: String, lines: Int, func: InvHandler.() -> Unit) : Inventory {
        return InvHandler(title, lines).apply(func).build()
    }
    fun Player.gui(title: String, lines: Int, func: InvHandler.() -> Unit) {
        this.openInventory(newInventory(title, lines, func))
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy