DEADSOFTWARE

Add my repo for automultibind
[cavedroid.git] / core / src / ru / deadsoftware / cavedroid / game / actions / useitem / IUseItemAction.kt
1 package ru.deadsoftware.cavedroid.game.actions.useitem
3 import ru.deadsoftware.cavedroid.game.model.item.Item
5 interface IUseItemAction {
7 fun perform(item: Item.Usable, x: Int, y: Int)
9 }