Rewrite the font system to render the characters incrementally (#2635)

This commit is contained in:
Väinö Mäkelä
2020-05-18 23:09:38 +03:00
committed by GitHub
parent 7330daff48
commit 4b6bab523f
14 changed files with 193 additions and 614 deletions

View File

@ -23,7 +23,8 @@ class AndroidLauncher : AndroidApplication() {
val game = UncivGame (
version = BuildConfig.VERSION_NAME,
crashReportSender = CrashReportSenderAndroid(this),
exitEvent = this::finish
exitEvent = this::finish,
fontImplementation = NativeFontAndroid(45)
)
initialize(game, config)
}