Files
artlegend/core/build.gradle.kts
bill 24d78786db Initial LibGDX project scaffold for ArtLegend
Multi-module Gradle setup targeting Android (S-Pen) and Desktop (Wacom/LWJGL3).
Includes core game stub, Android launcher with immersive mode, and desktop launcher.
Asset directory shared across platforms. Gradle 8.6, Kotlin 1.9.23, LibGDX 1.12.1.
2026-05-04 11:44:40 -07:00

14 lines
165 B
Kotlin

plugins {
kotlin("jvm")
}
val gdxVersion: String by project
dependencies {
api("com.badlogicgames.gdx:gdx:$gdxVersion")
}
kotlin {
jvmToolchain(17)
}