mirror of
https://github.com/jlengrand/korge-samples.git
synced 2026-03-10 08:31:18 +00:00
14 lines
270 B
Kotlin
14 lines
270 B
Kotlin
import com.soywiz.korge.gradle.*
|
|
|
|
apply<KorgeGradlePlugin>()
|
|
|
|
korge {
|
|
id = "com.soywiz.samples.text2"
|
|
name = "Text2"
|
|
description = "Shows show to use Text2"
|
|
orientation = com.soywiz.korge.gradle.Orientation.LANDSCAPE
|
|
jvmMainClassName = "MainKt"
|
|
|
|
targetDefault()
|
|
}
|