First commit

This commit is contained in:
2026-03-22 00:48:57 -03:00
commit b8713898e5
34 changed files with 2196 additions and 0 deletions

14
core/build.gradle Normal file
View File

@@ -0,0 +1,14 @@
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
eclipse.project.name = appName + '-core'
dependencies {
api "com.badlogicgames.gdx:gdx:$gdxVersion"
if(enableGraalNative == 'true') {
implementation "io.github.berstanio:gdx-svmhelper-annotations:$graalHelperVersion"
}
}
jar {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}