mirror of
https://github.com/plexusorg/Module-Shop.git
synced 2025-07-15 19:34:04 +00:00
8 lines
191 B
Kotlin
8 lines
191 B
Kotlin
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)
|
|
{
|
|
} |