Added more types, changed how items and stuff will work. Began work on audio and npcs.

This commit is contained in:
Raktbastr 2026-05-15 16:18:51 -05:00
parent 05a97e072a
commit 33957c55dc
28 changed files with 472 additions and 518 deletions

View file

@ -1,5 +1,6 @@
plugins {
id("java")
id("io.freefair.lombok") version "9.5.0"
}
group = "net.halfheart"
@ -14,8 +15,20 @@ dependencies {
testImplementation("org.junit.jupiter:junit-jupiter")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
implementation("org.json:json:20231013")
compileOnly("org.projectlombok:lombok:1.18.46")
annotationProcessor("org.projectlombok:lombok:1.18.46")
testCompileOnly("org.projectlombok:lombok:1.18.46")
testAnnotationProcessor("org.projectlombok:lombok:1.18.46")
}
tasks.test {
useJUnitPlatform()
}
tasks.jar {
manifest {
attributes(
"Main-Class" to "net.halfheart.Main",
)
}
}