mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-11 19:14:05 +09:00
Former-commit-id: 670df70bbed466e56034dbdd33d7a1da31cd88d7 Former-commit-id: 2b106753155be6080d4651acca1981f10d614421
9 lines
188 B
Kotlin
9 lines
188 B
Kotlin
package net.torvald.terrarum.ui
|
|
|
|
/**
|
|
* Created by minjaesong on 16-03-06.
|
|
*/
|
|
interface KeyboardControlled {
|
|
fun keyPressed(key: Int, c: Char)
|
|
fun keyReleased(key: Int, c: Char)
|
|
} |