such a kotlin moment

setup shop command
setup shop listener
setup item registration
This commit is contained in:
taah
2022-06-18 00:35:27 -07:00
parent babda6779e
commit c4743c97cb
10 changed files with 134 additions and 52 deletions

View File

@ -0,0 +1,8 @@
package dev.plex.shop.item.impl
import dev.plex.shop.item.AbstractItem
import org.bukkit.inventory.ItemStack
class FireballItem(item: ItemStack, cost: Double) : AbstractItem(item, cost)
{
}