mirror of
https://github.com/GayPizzaSpecifications/concrete.git
synced 2025-10-13 17:49:39 +00:00
11 lines
282 B
Kotlin
11 lines
282 B
Kotlin
package lgbt.mystic.foundation.concrete
|
|
|
|
import org.gradle.api.provider.Property
|
|
|
|
interface ConcreteExtension {
|
|
val paperVersionGroup: Property<String>
|
|
val paperApiVersion: Property<String>
|
|
val minecraftServerPath: Property<String>
|
|
val acceptServerEula: Property<Boolean>
|
|
}
|