still WIP inventory impl, held item impl

Former-commit-id: 9468cfae21ff09c3dd30352a849910364e01d780
Former-commit-id: 50247ccebf3284f739877a1d6c6d8574449a9824
This commit is contained in:
Song Minjae
2016-12-14 00:28:42 +09:00
parent 22bb5d83e1
commit 1dd156d172
22 changed files with 126 additions and 116 deletions

View File

@@ -1,6 +1,7 @@
package net.torvald.terrarum.gameactors
import org.dyn4j.geometry.Vector2
import org.newdawn.slick.GameContainer
import org.newdawn.slick.Input
/**
@@ -10,7 +11,7 @@ import org.newdawn.slick.Input
*/
interface Controllable {
fun processInput(input: Input)
fun processInput(gc: GameContainer, delta: Int, input: Input)
fun keyPressed(key: Int, c: Char)