mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-11 19:14:05 +09:00
11 lines
263 B
Kotlin
11 lines
263 B
Kotlin
package net.torvald.terrarum
|
|
|
|
import com.badlogic.gdx.Screen
|
|
import net.torvald.terrarum.gamecontroller.TerrarumKeyboardEvent
|
|
|
|
/**
|
|
* Created by minjaesong on 2021-11-06.
|
|
*/
|
|
interface TerrarumGamescreen : Screen {
|
|
fun inputStrobed(e: TerrarumKeyboardEvent)
|
|
} |