f23bb2178f
The only module that imports com.hypixel.*. Provides World.asExecutor, EntityHandle adapters for Ref/PlayerRef/Player, scope helpers (playerScope, worldScope, pluginScope), and installAsync() which wires PlayerDisconnectEvent to PlayerScopes.cancel.
17 lines
390 B
Kotlin
17 lines
390 B
Kotlin
plugins {
|
|
alias(libs.plugins.kotlin.jvm)
|
|
`java-library`
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":core"))
|
|
api(project(":ecs"))
|
|
compileOnly(libs.hytale.server)
|
|
|
|
testImplementation(libs.hytale.server)
|
|
testImplementation(libs.junit.jupiter)
|
|
testRuntimeOnly(libs.junit.platform.launcher)
|
|
testImplementation(libs.kotest.assertions)
|
|
testImplementation(libs.mockk)
|
|
}
|