X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=core%2Fsrc%2Fru%2Fdeadsoftware%2Fcavedroid%2Fgame%2Fmodel%2Fblock%2FCommonBlockParams.kt;h=369f7523430927e4f9d5a2c55e93b0ec3fc3fa80;hb=1e285247085ba04351feb486a0be6aa577f43093;hp=584e7376298d4fa103d36b88ed8d9c4e2ee8e6cf;hpb=a21a93fd9fa33adebe52d1f4478866dcc3b66d96;p=cavedroid.git diff --git a/core/src/ru/deadsoftware/cavedroid/game/model/block/CommonBlockParams.kt b/core/src/ru/deadsoftware/cavedroid/game/model/block/CommonBlockParams.kt index 584e737..369f752 100644 --- a/core/src/ru/deadsoftware/cavedroid/game/model/block/CommonBlockParams.kt +++ b/core/src/ru/deadsoftware/cavedroid/game/model/block/CommonBlockParams.kt @@ -4,7 +4,6 @@ import com.badlogic.gdx.graphics.Texture import ru.deadsoftware.cavedroid.game.model.item.Item data class CommonBlockParams( - @Deprecated("numeric id's will be removed") val id: Int?, val key: String, val collisionMargins: BlockMargins, val hitPoints: Int, @@ -17,5 +16,7 @@ data class CommonBlockParams( val texture: Texture?, val spriteMargins: BlockMargins, val toolLevel: Int, - val toolType: Class? + val toolType: Class?, + val damage: Int, + val tint: String?, )