diff options
Diffstat (limited to 'src/main')
| -rw-r--r-- | src/main/java/net/inyourwalls/customlevelcolour/mixin/InGameHudMixin.java | 4 | ||||
| -rw-r--r-- | src/main/resources/fabric.mod.json | 24 |
2 files changed, 28 insertions, 0 deletions
diff --git a/src/main/java/net/inyourwalls/customlevelcolour/mixin/InGameHudMixin.java b/src/main/java/net/inyourwalls/customlevelcolour/mixin/InGameHudMixin.java new file mode 100644 index 0000000..8e88457 --- /dev/null +++ b/src/main/java/net/inyourwalls/customlevelcolour/mixin/InGameHudMixin.java @@ -0,0 +1,4 @@ +// InGameHudMixin: Singular @ModifyArg to change the colour of the level text. +package net.inyourwalls.customlevelcolour.mixin; + +public class InGameHudMixin {} diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..13347a3 --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,24 @@ +{ + "schemaVersion": 1, + "id": "customlevelcolour", + "name": "Custom Level Colour", + "version": "${version}", + "description": "One-shot mod that changes the level colour on the XP bar.", + "authors": [ + "InYourWalls" + ], + "contact": { + "sources": "https://gitlab.com/programmersocks/CustomLevelColour" + }, + "license": "Unlicense", + "icon": "assets/customlevelcolour/icon.png", + "environment": "client", + "mixins": [ + "customlevelcolour.mixins.json" + ], + "depends": { + "minecraft": "1.20.4", + "java": ">=17", + "fabricloader": ">=0.15.0" + } +} |
