Initial commit

This commit is contained in:
2026-04-05 17:17:46 -03:00
commit 2293dc29fb
33 changed files with 1644 additions and 0 deletions

17
core/build.gradle Normal file
View File

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