first commit

This commit is contained in:
Patrick
2026-06-13 23:16:14 +02:00
commit 06a061957c
9 changed files with 171 additions and 0 deletions
@@ -0,0 +1,11 @@
package de.winniepat.parrotmod;
import net.fabricmc.api.ModInitializer;
public class Parrotmod implements ModInitializer {
@Override
public void onInitialize() {
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

+25
View File
@@ -0,0 +1,25 @@
{
"schemaVersion": 1,
"id": "parrotmod",
"version": "${version}",
"name": "ParrotMod",
"description": "Parrotmod is a utility mod for Minecraft which adds some useful features",
"authors": [],
"contact": {},
"license": "All-Rights-Reserved",
"icon": "assets/parrotmod/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"de.winniepat.parrotmod.Parrotmod"
]
},
"mixins": [
"parrotmod.mixins.json"
],
"depends": {
"fabricloader": ">=${loader_version}",
"fabric-api": "*",
"minecraft": "${minecraft_version}"
}
}
+16
View File
@@ -0,0 +1,16 @@
{
"required": true,
"minVersion": "0.8",
"package": "de.winniepat.parrotmod.mixin",
"compatibilityLevel": "JAVA_21",
"mixins": [
],
"client": [
],
"injectors": {
"defaultRequire": 1
},
"overwrites": {
"requireAnnotations": true
}
}