├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src └── main ├── java └── net │ └── fabricmc │ └── example │ └── mixin │ └── ExampleMixin.java ├── kotlin └── net │ └── fabricmc │ └── example │ └── ExampleMod.kt └── resources ├── assets └── modid │ └── icon.png ├── fabric.mod.json └── modid.mixins.json /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfudge/fabric-example-mod-kotlin/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfudge/fabric-example-mod-kotlin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfudge/fabric-example-mod-kotlin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfudge/fabric-example-mod-kotlin/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfudge/fabric-example-mod-kotlin/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfudge/fabric-example-mod-kotlin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfudge/fabric-example-mod-kotlin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfudge/fabric-example-mod-kotlin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfudge/fabric-example-mod-kotlin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfudge/fabric-example-mod-kotlin/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/main/java/net/fabricmc/example/mixin/ExampleMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfudge/fabric-example-mod-kotlin/HEAD/src/main/java/net/fabricmc/example/mixin/ExampleMixin.java -------------------------------------------------------------------------------- /src/main/kotlin/net/fabricmc/example/ExampleMod.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfudge/fabric-example-mod-kotlin/HEAD/src/main/kotlin/net/fabricmc/example/ExampleMod.kt -------------------------------------------------------------------------------- /src/main/resources/assets/modid/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfudge/fabric-example-mod-kotlin/HEAD/src/main/resources/assets/modid/icon.png -------------------------------------------------------------------------------- /src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfudge/fabric-example-mod-kotlin/HEAD/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /src/main/resources/modid.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfudge/fabric-example-mod-kotlin/HEAD/src/main/resources/modid.mixins.json --------------------------------------------------------------------------------