Massive amount of refactoring for local multiplayer, annotations

This commit is contained in:
Anuken
2018-05-12 07:30:23 -07:00
parent 959f756ff5
commit 00e70cbb6a
47 changed files with 610 additions and 510 deletions

View File

@@ -148,6 +148,8 @@ project(":core") {
apply plugin: "java"
dependencies {
compile project(":annotations")
boolean comp = System.properties["release"] == null || System.properties["release"] == "false"
if(!comp){
@@ -165,10 +167,16 @@ project(":core") {
if(new File('../GDXGifRecorder').exists() && comp) {
compile project(":GDXGifRecorder")
}
compile "com.badlogicgames.gdx:gdx:$gdxVersion"
compile "com.badlogicgames.gdx:gdx-ai:$aiVersion"
compile "com.badlogicgames.gdx:gdx-controllers:$gdxVersion"
}
compileJava.options.compilerArgs = [
"-proc:only",
"-processor", "io.anuke.annotations.AnnotationProcessor"
]
}
project(":server") {
@@ -182,6 +190,12 @@ project(":server") {
}
}
project(":annotations") {
apply plugin: "java"
dependencies {}
}
project(":kryonet") {
apply plugin: "java"