summary refs log tree commit diff stats
path: root/src/main/kotlin/net/fabricmc/example/ExampleMod.kt
blob: aebbd4ba59594ee9e0145fce44b493c98ff7620f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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!")
}