├── .gitignore ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src └── main ├── java └── io │ └── github │ └── minecraftcursedlegacy │ └── example │ ├── ExampleMod.java │ └── mixin │ └── ExampleMixin.java └── resources ├── assets └── modid │ └── icon.png ├── fabric.mod.json └── modid.mixins.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minecraft-cursed-legacy/Example-Mod/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minecraft-cursed-legacy/Example-Mod/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minecraft-cursed-legacy/Example-Mod/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minecraft-cursed-legacy/Example-Mod/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minecraft-cursed-legacy/Example-Mod/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minecraft-cursed-legacy/Example-Mod/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minecraft-cursed-legacy/Example-Mod/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minecraft-cursed-legacy/Example-Mod/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minecraft-cursed-legacy/Example-Mod/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/main/java/io/github/minecraftcursedlegacy/example/ExampleMod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minecraft-cursed-legacy/Example-Mod/HEAD/src/main/java/io/github/minecraftcursedlegacy/example/ExampleMod.java -------------------------------------------------------------------------------- /src/main/java/io/github/minecraftcursedlegacy/example/mixin/ExampleMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minecraft-cursed-legacy/Example-Mod/HEAD/src/main/java/io/github/minecraftcursedlegacy/example/mixin/ExampleMixin.java -------------------------------------------------------------------------------- /src/main/resources/assets/modid/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minecraft-cursed-legacy/Example-Mod/HEAD/src/main/resources/assets/modid/icon.png -------------------------------------------------------------------------------- /src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minecraft-cursed-legacy/Example-Mod/HEAD/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /src/main/resources/modid.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minecraft-cursed-legacy/Example-Mod/HEAD/src/main/resources/modid.mixins.json --------------------------------------------------------------------------------