Progress on more rewrites

This commit is contained in:
2026-06-13 03:55:20 +02:00
parent 340d8ff463
commit 396d4f2232
144 changed files with 5657 additions and 4997 deletions
+21 -1
View File
@@ -16,12 +16,31 @@ eclipse {
}
sourceSets {
graphics {}
math {
java {}
}
assets {
java {}
}
graphics {
java {}
}
main {
compileClasspath += sourceSets.math.output
runtimeClasspath += sourceSets.math.output
}
graphics {
compileClasspath += sourceSets.math.output
runtimeClasspath += sourceSets.math.output
java {}
}
}
configurations {
graphics.extendsFrom implementation
graphics.extendsFrom runtime
graphics.extendsFrom mathRuntime
implementation.extendsFrom mathRuntime
}
repositories {
@@ -64,6 +83,7 @@ dependencies {
//Primitive Collections
implementation 'de.speiger:Primitive-Collections:1.0.0'
mathImplementation 'de.speiger:Primitive-Collections:1.0.0'
}
jar {