aboutsummaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
Diffstat (limited to 'src/client')
-rw-r--r--src/client/java/world/anhgelus/molehunt/client/MolehuntClient.java10
-rw-r--r--src/client/resources/molehunt.client.mixins.json11
2 files changed, 21 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
+ }
+}