From e842b9e82f76bb016ea6a099a5d40a2bb5977b22 Mon Sep 17 00:00:00 2001 From: anhgelus Date: Wed, 21 Aug 2024 17:30:25 +0000 Subject: Initial commit --- .../java/world/anhgelus/molehunt/Molehunt.java | 10 +++++++ src/main/resources/fabric.mod.json | 34 ++++++++++++++++++++++ src/main/resources/molehunt.mixins.json | 11 +++++++ 3 files changed, 55 insertions(+) create mode 100644 src/main/java/world/anhgelus/molehunt/Molehunt.java create mode 100644 src/main/resources/fabric.mod.json create mode 100644 src/main/resources/molehunt.mixins.json (limited to 'src/main') diff --git a/src/main/java/world/anhgelus/molehunt/Molehunt.java b/src/main/java/world/anhgelus/molehunt/Molehunt.java new file mode 100644 index 0000000..5886734 --- /dev/null +++ b/src/main/java/world/anhgelus/molehunt/Molehunt.java @@ -0,0 +1,10 @@ +package world.anhgelus.molehunt; + +import net.fabricmc.api.ModInitializer; + +public class Molehunt implements ModInitializer { + + @Override + public void onInitialize() { + } +} diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..e48aaf8 --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,34 @@ +{ + "schemaVersion": 1, + "id": "molehunt", + "version": "${version}", + "name": "Molehunt", + "description": "Molehunt mod", + "authors": [ + "Anhgelus Morhtuuzh" + ], + "contact": {}, + "license": "AGPL-3.0", + "icon": "assets/molehunt/icon.png", + "environment": "*", + "entrypoints": { + "client": [ + "world.anhgelus.molehunt.client.MolehuntClient" + ], + "main": [ + "world.anhgelus.molehunt.Molehunt" + ] + }, + "mixins": [ + "molehunt.mixins.json", + { + "config": "molehunt.client.mixins.json", + "environment": "client" + } + ], + "depends": { + "fabricloader": ">=${loader_version}", + "fabric": "*", + "minecraft": "${minecraft_version}" + } +} diff --git a/src/main/resources/molehunt.mixins.json b/src/main/resources/molehunt.mixins.json new file mode 100644 index 0000000..5b76af8 --- /dev/null +++ b/src/main/resources/molehunt.mixins.json @@ -0,0 +1,11 @@ +{ + "required": true, + "minVersion": "0.8", + "package": "world.anhgelus.molehunt.mixin", + "compatibilityLevel": "JAVA_21", + "mixins": [ + ], + "injectors": { + "defaultRequire": 1 + } +} -- cgit v1.2.3