blob: aebbd4ba59594ee9e0145fce44b493c98ff7620f (
plain) (
tree)
|
|
package net.fabricmc.example
@Suppress("unused")
fun init() {
// This code runs as soon as Minecraft is in a mod-load-ready state.
// However, some things (like resources) may still be uninitialized.
// Proceed with mild caution.
println("Hello Fabric world!")
}
|