net.silkmc.silk.core.Silk.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of silk-core Show documentation
Show all versions of silk-core Show documentation
Silk is a Minecraft API for Kotlin
package net.silkmc.silk.core
import net.minecraft.server.MinecraftServer
import net.silkmc.silk.core.annotations.DelicateSilkApi
@Deprecated(
message = "FabrikMC has been renamed to Silk.",
replaceWith = ReplaceWith("net.silkmc.silk.core.Silk")
)
typealias Fabrik = Silk
/**
* An object containing global values used by Silk.
*/
object Silk {
/**
* The current [MinecraftServer] server instance.
*/
@DelicateSilkApi
var currentServer: MinecraftServer? = null
internal set
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy