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