From e2e47404759e89cd7ebeed87199c30e9f50db01c Mon Sep 17 00:00:00 2001 From: HacktheTime Date: Sat, 8 Jul 2023 23:50:53 +0200 Subject: test --- build/resources/main/fabric.mod.json | 30 +++++++++++++++++++++ build/resources/main/hypeclient.mixins.json | 13 +++++++++ build/resources/main/modid.mixins.json | 15 +++++++++++ .../main/sounds/mixkit-gaming-lock-2848.wav | Bin 0 -> 201240 bytes .../sounds/mixkit-interface-option-select-2573.wav | Bin 0 -> 274068 bytes .../resources/main/sounds/mixkit-long-pop-2358.wav | Bin 0 -> 226002 bytes .../main/sounds/mixkit-sci-fi-click-900.wav | Bin 0 -> 184244 bytes .../main/sounds/mixkit-sci-fi-confirmation-914.wav | Bin 0 -> 276320 bytes 8 files changed, 58 insertions(+) create mode 100644 build/resources/main/fabric.mod.json create mode 100644 build/resources/main/hypeclient.mixins.json create mode 100644 build/resources/main/modid.mixins.json create mode 100644 build/resources/main/sounds/mixkit-gaming-lock-2848.wav create mode 100644 build/resources/main/sounds/mixkit-interface-option-select-2573.wav create mode 100644 build/resources/main/sounds/mixkit-long-pop-2358.wav create mode 100644 build/resources/main/sounds/mixkit-sci-fi-click-900.wav create mode 100644 build/resources/main/sounds/mixkit-sci-fi-confirmation-914.wav (limited to 'build/resources') diff --git a/build/resources/main/fabric.mod.json b/build/resources/main/fabric.mod.json new file mode 100644 index 0000000..2eb4f2d --- /dev/null +++ b/build/resources/main/fabric.mod.json @@ -0,0 +1,30 @@ +{ + "schemaVersion": 1, + "id": "hype-client", + "version": "1.0", + "name": "hype-client", + "description": "QOL Modifciations", + "authors": [ + "Hack the Time" + ], + "contact": {}, + "license": "All-Rights-Reserved", + "icon": "assets/hype-client/icon.png", + "environment": "client", + "entrypoints": { + "client": [ + "de.hype.hypeclient.client.Hype_clientClient" + ], + "main": [ + "de.hype.hypeclient.Hype_client" + ] + }, + "depends": { + "fabricloader": ">=0.14.21", + "fabric": "*", + "minecraft": "1.20.1" + }, + "mixins": [ + "modid.mixins.json" + ] +} diff --git a/build/resources/main/hypeclient.mixins.json b/build/resources/main/hypeclient.mixins.json new file mode 100644 index 0000000..16a4038 --- /dev/null +++ b/build/resources/main/hypeclient.mixins.json @@ -0,0 +1,13 @@ +{ + "required": true, + "minVersion": "0.8", + "package": "de.hype.hypeclient.mixins", + "compatibilityLevel": "JAVA_17", + "mixins": [ + ], + "client": [ + ], + "injectors": { + "defaultRequire": 1 + } +} diff --git a/build/resources/main/modid.mixins.json b/build/resources/main/modid.mixins.json new file mode 100644 index 0000000..12dc963 --- /dev/null +++ b/build/resources/main/modid.mixins.json @@ -0,0 +1,15 @@ +{ + "required": true, + "minVersion": "0.8", + "package": "de.hype.hypeclient.mixins", + "compatibilityLevel": "JAVA_8", + "mixins": [ + ], + "client": [ + "SimpleOptionMixin", + "ClientCommandSourceMixin" + ], + "injectors": { + "defaultRequire": 1 + } +} \ No newline at end of file diff --git a/build/resources/main/sounds/mixkit-gaming-lock-2848.wav b/build/resources/main/sounds/mixkit-gaming-lock-2848.wav new file mode 100644 index 0000000..d079479 Binary files /dev/null and b/build/resources/main/sounds/mixkit-gaming-lock-2848.wav differ diff --git a/build/resources/main/sounds/mixkit-interface-option-select-2573.wav b/build/resources/main/sounds/mixkit-interface-option-select-2573.wav new file mode 100644 index 0000000..f118ac5 Binary files /dev/null and b/build/resources/main/sounds/mixkit-interface-option-select-2573.wav differ diff --git a/build/resources/main/sounds/mixkit-long-pop-2358.wav b/build/resources/main/sounds/mixkit-long-pop-2358.wav new file mode 100644 index 0000000..4bed79a Binary files /dev/null and b/build/resources/main/sounds/mixkit-long-pop-2358.wav differ diff --git a/build/resources/main/sounds/mixkit-sci-fi-click-900.wav b/build/resources/main/sounds/mixkit-sci-fi-click-900.wav new file mode 100644 index 0000000..582445e Binary files /dev/null and b/build/resources/main/sounds/mixkit-sci-fi-click-900.wav differ diff --git a/build/resources/main/sounds/mixkit-sci-fi-confirmation-914.wav b/build/resources/main/sounds/mixkit-sci-fi-confirmation-914.wav new file mode 100644 index 0000000..37800c9 Binary files /dev/null and b/build/resources/main/sounds/mixkit-sci-fi-confirmation-914.wav differ -- cgit