From 386ee78026801bf50d9cba24de541ed087f145d6 Mon Sep 17 00:00:00 2001 From: nea Date: Tue, 26 Jul 2022 23:12:13 +0200 Subject: 1.19 and no more forge --- .../examplemod/fabric/ExampleExpectPlatformImpl.kt | 13 ------- .../kotlin/net/examplemod/quilt/ExampleModQuilt.kt | 12 ------ quilt/src/main/resources/quilt.mod.json | 45 ---------------------- 3 files changed, 70 deletions(-) delete mode 100644 quilt/src/main/kotlin/net/examplemod/fabric/ExampleExpectPlatformImpl.kt delete mode 100644 quilt/src/main/kotlin/net/examplemod/quilt/ExampleModQuilt.kt delete mode 100644 quilt/src/main/resources/quilt.mod.json (limited to 'quilt/src') diff --git a/quilt/src/main/kotlin/net/examplemod/fabric/ExampleExpectPlatformImpl.kt b/quilt/src/main/kotlin/net/examplemod/fabric/ExampleExpectPlatformImpl.kt deleted file mode 100644 index 6f78162..0000000 --- a/quilt/src/main/kotlin/net/examplemod/fabric/ExampleExpectPlatformImpl.kt +++ /dev/null @@ -1,13 +0,0 @@ -package net.examplemod.fabric - -import org.quiltmc.loader.api.QuiltLoader -import java.nio.file.Path -import net.examplemod.ExampleExpectPlatform - -object ExampleExpectPlatformImpl { - /** - * This is our actual method to [ExampleExpectPlatform.getConfigDirectory]. - */ - @JvmStatic - fun getConfigDirectory(): Path = QuiltLoader.getConfigDir() -} \ No newline at end of file diff --git a/quilt/src/main/kotlin/net/examplemod/quilt/ExampleModQuilt.kt b/quilt/src/main/kotlin/net/examplemod/quilt/ExampleModQuilt.kt deleted file mode 100644 index a5dae4d..0000000 --- a/quilt/src/main/kotlin/net/examplemod/quilt/ExampleModQuilt.kt +++ /dev/null @@ -1,12 +0,0 @@ -package net.examplemod.quilt - -import moe.nea.notenoughupdates.NotEnoughUpdates.init -import org.quiltmc.loader.api.ModContainer -import org.quiltmc.qsl.base.api.entrypoint.ModInitializer - -@Suppress("unused") -class ExampleModQuilt : ModInitializer { - override fun onInitialize(mod: ModContainer) { - init() - } -} diff --git a/quilt/src/main/resources/quilt.mod.json b/quilt/src/main/resources/quilt.mod.json deleted file mode 100644 index 6cdf9ae..0000000 --- a/quilt/src/main/resources/quilt.mod.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "schema_version": 1, - "mixins": [ - "notenoughupdates.mixins.json", - "notenoughupdates-common.mixins.json" - ], - "quilt_loader": { - "group": "${group}", - "id": "notenoughupdates", - "version": "${version}", - "name": "Not Enough Updates", - "description": "Not Enough Updates - A mod for Hypixel Skyblock", - "authors": ["nea89"], - "contact": { - "sources": "https://github.com/romangraef/TODO" - }, - "license": "LGPL-3.0", - "icon": "assets/notenoughupdates/icon.png", - "intermediate_mappings": "net.fabricmc:intermediary", - "environment": "*", - "entrypoints": { - "init": [ - "net.examplemod.quilt.ExampleModQuilt" - ] - }, - "depends": [ - { - "id": "quilt_loader", - "version": "*" - }, - { - "id": "quilt_base", - "version": "*" - }, - { - "id": "minecraft", - "version": ">=1.18.2" - }, - { - "id": "architectury", - "version": ">=4.2.50" - } - ] - } -} -- cgit