Keyboard strobing moved to a new thread so that fast typing is possible even if the game's update method is running slowly

This commit is contained in:
minjaesong
2021-11-06 11:30:42 +09:00
parent ddd7492922
commit 7503876d1f
15 changed files with 240 additions and 131 deletions

View File

@@ -0,0 +1,11 @@
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)
}