Initial commit

This commit is contained in:
2025-09-08 04:39:35 +01:00
commit 73b6e2c156
126 changed files with 6867 additions and 0 deletions

12
core/build.gradle Normal file
View File

@@ -0,0 +1,12 @@
[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"
}
implementation(project(":server"))
}