├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── run └── log4j2.xml ├── settings.gradle.kts └── src └── main ├── java └── mixin │ ├── ExampleMixin.java │ └── bindings │ └── ExampleBindingMixin.java ├── kotlin ├── ExampleMod.kt ├── blocks │ └── ExampleBlock.kt ├── creativetabs │ └── ExampleCreativeModTab.kt ├── events │ └── NoHitCoolDown.kt ├── init │ ├── BlockItemRegistry.kt │ ├── BlockRegistry.kt │ └── ItemRegistry.kt ├── items │ └── SadObsidianMaker.kt ├── keybind │ ├── KeyBindHandler.kt │ └── KeyBinds.kt └── mixinkt │ └── ExampleMixinBinding.kt └── resources ├── META-INF ├── accesstransformer.cfg └── mods.toml ├── assets └── examplemod │ ├── blockstates │ └── example_block.json │ ├── lang │ ├── en_us.json │ └── ko_kr.json │ ├── models │ ├── block │ │ └── example_block.json │ └── item │ │ ├── example_block.json │ │ └── sad_obsidian_maker.json │ └── textures │ ├── block │ └── example_block.png │ └── item │ └── sad_obsidian_maker.png ├── examplemod.mixins.json ├── examplemod.png └── pack.mcmeta /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/gradlew.bat -------------------------------------------------------------------------------- /run/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/run/log4j2.xml -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /src/main/java/mixin/ExampleMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/src/main/java/mixin/ExampleMixin.java -------------------------------------------------------------------------------- /src/main/java/mixin/bindings/ExampleBindingMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/src/main/java/mixin/bindings/ExampleBindingMixin.java -------------------------------------------------------------------------------- /src/main/kotlin/ExampleMod.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/src/main/kotlin/ExampleMod.kt -------------------------------------------------------------------------------- /src/main/kotlin/blocks/ExampleBlock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/src/main/kotlin/blocks/ExampleBlock.kt -------------------------------------------------------------------------------- /src/main/kotlin/creativetabs/ExampleCreativeModTab.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/src/main/kotlin/creativetabs/ExampleCreativeModTab.kt -------------------------------------------------------------------------------- /src/main/kotlin/events/NoHitCoolDown.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/src/main/kotlin/events/NoHitCoolDown.kt -------------------------------------------------------------------------------- /src/main/kotlin/init/BlockItemRegistry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/src/main/kotlin/init/BlockItemRegistry.kt -------------------------------------------------------------------------------- /src/main/kotlin/init/BlockRegistry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/src/main/kotlin/init/BlockRegistry.kt -------------------------------------------------------------------------------- /src/main/kotlin/init/ItemRegistry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/src/main/kotlin/init/ItemRegistry.kt -------------------------------------------------------------------------------- /src/main/kotlin/items/SadObsidianMaker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/src/main/kotlin/items/SadObsidianMaker.kt -------------------------------------------------------------------------------- /src/main/kotlin/keybind/KeyBindHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/src/main/kotlin/keybind/KeyBindHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/keybind/KeyBinds.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/src/main/kotlin/keybind/KeyBinds.kt -------------------------------------------------------------------------------- /src/main/kotlin/mixinkt/ExampleMixinBinding.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/src/main/kotlin/mixinkt/ExampleMixinBinding.kt -------------------------------------------------------------------------------- /src/main/resources/META-INF/accesstransformer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/src/main/resources/META-INF/accesstransformer.cfg -------------------------------------------------------------------------------- /src/main/resources/META-INF/mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/src/main/resources/META-INF/mods.toml -------------------------------------------------------------------------------- /src/main/resources/assets/examplemod/blockstates/example_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/src/main/resources/assets/examplemod/blockstates/example_block.json -------------------------------------------------------------------------------- /src/main/resources/assets/examplemod/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/src/main/resources/assets/examplemod/lang/en_us.json -------------------------------------------------------------------------------- /src/main/resources/assets/examplemod/lang/ko_kr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/src/main/resources/assets/examplemod/lang/ko_kr.json -------------------------------------------------------------------------------- /src/main/resources/assets/examplemod/models/block/example_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/src/main/resources/assets/examplemod/models/block/example_block.json -------------------------------------------------------------------------------- /src/main/resources/assets/examplemod/models/item/example_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/src/main/resources/assets/examplemod/models/item/example_block.json -------------------------------------------------------------------------------- /src/main/resources/assets/examplemod/models/item/sad_obsidian_maker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/src/main/resources/assets/examplemod/models/item/sad_obsidian_maker.json -------------------------------------------------------------------------------- /src/main/resources/assets/examplemod/textures/block/example_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/src/main/resources/assets/examplemod/textures/block/example_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/examplemod/textures/item/sad_obsidian_maker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/src/main/resources/assets/examplemod/textures/item/sad_obsidian_maker.png -------------------------------------------------------------------------------- /src/main/resources/examplemod.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/src/main/resources/examplemod.mixins.json -------------------------------------------------------------------------------- /src/main/resources/examplemod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/src/main/resources/examplemod.png -------------------------------------------------------------------------------- /src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PleahMaCaka/forge-kotlin-template/HEAD/src/main/resources/pack.mcmeta --------------------------------------------------------------------------------