├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE-TEMPLATE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── root.gradle.kts ├── settings.gradle.kts ├── src └── main │ ├── java │ └── org │ │ └── polyfrost │ │ └── example │ │ ├── ExampleMod.java │ │ ├── command │ │ └── ExampleCommand.java │ │ ├── config │ │ └── TestConfig.java │ │ ├── hud │ │ └── TestHud.java │ │ └── mixin │ │ └── MinecraftMixin.java │ └── resources │ ├── mcmod.info │ └── mixins.examplemod.json ├── update-to-301a6ca.md ├── update-to-fd8e095.md └── versions └── mainProject /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polyfrost/OneConfigExampleMod/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polyfrost/OneConfigExampleMod/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE-TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polyfrost/OneConfigExampleMod/HEAD/LICENSE-TEMPLATE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polyfrost/OneConfigExampleMod/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polyfrost/OneConfigExampleMod/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polyfrost/OneConfigExampleMod/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polyfrost/OneConfigExampleMod/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polyfrost/OneConfigExampleMod/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polyfrost/OneConfigExampleMod/HEAD/gradlew.bat -------------------------------------------------------------------------------- /root.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polyfrost/OneConfigExampleMod/HEAD/root.gradle.kts -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polyfrost/OneConfigExampleMod/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /src/main/java/org/polyfrost/example/ExampleMod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polyfrost/OneConfigExampleMod/HEAD/src/main/java/org/polyfrost/example/ExampleMod.java -------------------------------------------------------------------------------- /src/main/java/org/polyfrost/example/command/ExampleCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polyfrost/OneConfigExampleMod/HEAD/src/main/java/org/polyfrost/example/command/ExampleCommand.java -------------------------------------------------------------------------------- /src/main/java/org/polyfrost/example/config/TestConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polyfrost/OneConfigExampleMod/HEAD/src/main/java/org/polyfrost/example/config/TestConfig.java -------------------------------------------------------------------------------- /src/main/java/org/polyfrost/example/hud/TestHud.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polyfrost/OneConfigExampleMod/HEAD/src/main/java/org/polyfrost/example/hud/TestHud.java -------------------------------------------------------------------------------- /src/main/java/org/polyfrost/example/mixin/MinecraftMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polyfrost/OneConfigExampleMod/HEAD/src/main/java/org/polyfrost/example/mixin/MinecraftMixin.java -------------------------------------------------------------------------------- /src/main/resources/mcmod.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polyfrost/OneConfigExampleMod/HEAD/src/main/resources/mcmod.info -------------------------------------------------------------------------------- /src/main/resources/mixins.examplemod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polyfrost/OneConfigExampleMod/HEAD/src/main/resources/mixins.examplemod.json -------------------------------------------------------------------------------- /update-to-301a6ca.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polyfrost/OneConfigExampleMod/HEAD/update-to-301a6ca.md -------------------------------------------------------------------------------- /update-to-fd8e095.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polyfrost/OneConfigExampleMod/HEAD/update-to-fd8e095.md -------------------------------------------------------------------------------- /versions/mainProject: -------------------------------------------------------------------------------- 1 | 1.8.9-forge --------------------------------------------------------------------------------