mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-17 14:04:05 +09:00
Former-commit-id: 8a2a91a5252347b5184f62ec0f7009292fbb01bb Former-commit-id: b31eaddf7596c8393c9a032e8897ef3f1a8234fd
18 lines
291 B
Kotlin
18 lines
291 B
Kotlin
package net.torvald.terrarum.gameactors
|
|
|
|
import net.torvald.terrarum.gameitem.InventoryItem
|
|
|
|
/**
|
|
* Created by minjaesong on 16-01-31.
|
|
*/
|
|
interface CanBeAnItem {
|
|
|
|
fun getItemWeight(): Double
|
|
|
|
fun stopUpdateAndDraw()
|
|
|
|
fun resumeUpdateAndDraw()
|
|
|
|
var itemData: InventoryItem
|
|
|
|
} |