Start adding tea making listeners

This commit is contained in:
gregf36665 2024-12-17 17:43:23 +00:00 committed by Syndromeramo
parent dd7162b4fe
commit 0198febf9d

View file

@ -0,0 +1,21 @@
package content.global.skill.cooking
import core.game.interaction.InteractionListener
/**
* This deals with all tea mixtures
* cup of tea
* nettle tea
* nettle water
* nettle tea (cup)
* poh tea
* clay
* porcelain
* gold trim
*/
class TeaInteraction : InteractionListener {
override fun defineListeners() {
onUseWith(ITEM, )
TODO("Not yet implemented")
}
}