First attempt at making Unciv Android-TV-compatible

This commit is contained in:
Yair Morgenstern
2020-12-01 23:26:01 +02:00
parent 07cee7e679
commit 0feb9bdefc
4 changed files with 123 additions and 107 deletions

View File

@ -13,7 +13,7 @@ import com.unciv.logic.GameSaver
import com.unciv.ui.utils.ORIGINAL_FONT_SIZE
import java.io.File
class AndroidLauncher : AndroidApplication() {
open class AndroidLauncher : AndroidApplication() {
private var customSaveLocationHelper: CustomSaveLocationHelperAndroid? = null
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
@ -87,4 +87,6 @@ class AndroidLauncher : AndroidApplication() {
}
super.onActivityResult(requestCode, resultCode, data)
}
}
}
class AndroidTvLauncher:AndroidLauncher()