DEADSOFTWARE

Update README
[cavedroid.git] / core / src / ru / deadsoftware / cavedroid / game / actions / placeblock / IPlaceBlockAction.kt
1 package ru.deadsoftware.cavedroid.game.actions.placeblock
3 import ru.deadsoftware.cavedroid.game.model.item.Item
5 interface IPlaceBlockAction {
7 fun place(placeable: Item.Placeable, x: Int, y: Int)
9 }