summaryrefslogtreecommitdiff
path: root/core/build.gradle
diff options
context:
space:
mode:
authorElizabeth Alexander Hunt <me@liz.coffee>2026-02-22 14:48:06 -0800
committerElizabeth Alexander Hunt <me@liz.coffee>2026-02-22 14:48:06 -0800
commitc9c7e69714707262e8bdea25853bf33447a57951 (patch)
tree6d1e4b317c7e5896be5d719649c4b6c4df09a93f /core/build.gradle
downloaddyl-c9c7e69714707262e8bdea25853bf33447a57951.tar.gz
dyl-c9c7e69714707262e8bdea25853bf33447a57951.zip
Initialization
Diffstat (limited to 'core/build.gradle')
-rw-r--r--core/build.gradle15
1 files changed, 15 insertions, 0 deletions
diff --git a/core/build.gradle b/core/build.gradle
new file mode 100644
index 0000000..a27dcd6
--- /dev/null
+++ b/core/build.gradle
@@ -0,0 +1,15 @@
+[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
+eclipse.project.name = appName + '-core'
+
+dependencies {
+ api "com.badlogicgames.ashley:ashley:$ashleyVersion"
+ api "com.badlogicgames.box2dlights:box2dlights:$box2dlightsVersion"
+ api "com.badlogicgames.gdx:gdx-ai:$aiVersion"
+ api "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
+ api "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
+ api "com.badlogicgames.gdx:gdx:$gdxVersion"
+
+ if(enableGraalNative == 'true') {
+ implementation "io.github.berstanio:gdx-svmhelper-annotations:$graalHelperVersion"
+ }
+}