Renamed builder function

This commit is contained in:
bluefireoly
2020-10-20 18:14:55 +02:00
parent deb28cd9b2
commit 872a75acbf

View File

@@ -5,7 +5,7 @@ package net.axay.kspigot.inventory
import net.axay.kspigot.inventory.elements.*
import org.bukkit.inventory.ItemStack
fun <T : ForInventory> inventoryGUI(
fun <T : ForInventory> kSpigotGUI(
type: InventoryType<T>,
builder: InventoryGUIBuilder<T>.() -> Unit,
) = InventoryGUIBuilder(type).apply(builder).build()