blob: f011df7e9b77f084a7b6ddd59f4019bdfd8ee25f (
plain) (
tree)
|
|
package net.fabricmc.example
// For support join https://discord.gg/v6v4pMv
@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!")
}
|