aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/client/java/world/anhgelus/molehunt/client/MolehuntClient.java10
-rw-r--r--src/client/resources/molehunt.client.mixins.json11
-rw-r--r--src/main/java/world/anhgelus/molehunt/Molehunt.java10
-rw-r--r--src/main/resources/fabric.mod.json34
-rw-r--r--src/main/resources/molehunt.mixins.json11
5 files changed, 76 insertions, 0 deletions
diff --git a/src/client/java/world/anhgelus/molehunt/client/MolehuntClient.java b/src/client/java/world/anhgelus/molehunt/client/MolehuntClient.java
new file mode 100644
index 0000000..034b80c
--- /dev/null
+++ b/src/client/java/world/anhgelus/molehunt/client/MolehuntClient.java
@@ -0,0 +1,10 @@
+package world.anhgelus.molehunt.client;
+
+import net.fabricmc.api.ClientModInitializer;
+
+public class MolehuntClient implements ClientModInitializer {
+
+ @Override
+ public void onInitializeClient() {
+ }
+}
diff --git a/src/client/resources/molehunt.client.mixins.json b/src/client/resources/molehunt.client.mixins.json
new file mode 100644
index 0000000..149a39e
--- /dev/null
+++ b/src/client/resources/molehunt.client.mixins.json
@@ -0,0 +1,11 @@
+{
+ "required": true,
+ "minVersion": "0.8",
+ "package": "world.anhgelus.molehunt.mixin.client",
+ "compatibilityLevel": "JAVA_21",
+ "client": [
+ ],
+ "injectors": {
+ "defaultRequire": 1
+ }
+}
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
+ }
+}