Initial commit

This commit is contained in:
Daniel
2024-10-15 22:44:48 +03:00
commit ec2b5cf98c
30 changed files with 1346 additions and 0 deletions

13
core/build.gradle Normal file
View File

@@ -0,0 +1,13 @@
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
eclipse.project.name = appName + '-core'
dependencies {
api "com.badlogicgames.box2dlights:box2dlights:$box2dlightsVersion"
api "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
api "com.badlogicgames.gdx:gdx:$gdxVersion"
api "com.github.czyzby:noise4j:$noise4jVersion"
if(enableGraalNative == 'true') {
implementation "io.github.berstanio:gdx-svmhelper-annotations:$graalHelperVersion"
}
}