mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-12 03:24:06 +09:00
12 lines
216 B
Kotlin
12 lines
216 B
Kotlin
package net.torvald.terrarum.gameactors
|
|
|
|
|
|
/**
|
|
* Actors that has movement controlled by Keyboard or AI
|
|
*
|
|
* Created by minjaesong on 2015-12-31.
|
|
*/
|
|
interface Controllable {
|
|
fun keyDown(keycode: Int): Boolean
|
|
|
|
} |