mirror of
https://github.com/GayPizzaSpecifications/concrete.git
synced 2025-08-06 06:31:33 +00:00
13 lines
303 B
Kotlin
13 lines
303 B
Kotlin
package gay.pizza.foundation.concrete
|
|
|
|
import org.gradle.api.tasks.Internal
|
|
import java.io.File
|
|
|
|
open class SetupLocalMinecraftServer : SetupMinecraftServer() {
|
|
@Internal
|
|
lateinit var minecraftServerDirectory: File
|
|
|
|
@Internal
|
|
override fun getServerDirectory(): File = minecraftServerDirectory
|
|
}
|