Initialize

This commit is contained in:
paulevsGitch 2020-09-20 22:09:53 +03:00
parent f2b5bc6985
commit ce76ed9c7a
14 changed files with 517 additions and 21 deletions

View file

@ -0,0 +1,10 @@
package ru.betterend;
import net.fabricmc.api.ModInitializer;
public class BetterEnd implements ModInitializer {
@Override
public void onInitialize() {
System.out.println("Hello Fabric world!");
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 453 B

View file

@ -0,0 +1,13 @@
{
"required": true,
"minVersion": "0.8",
"package": "ru.betternd.mixin",
"compatibilityLevel": "JAVA_8",
"mixins": [
],
"client": [
],
"injectors": {
"defaultRequire": 1
}
}

View file

@ -0,0 +1,38 @@
{
"schemaVersion": 1,
"id": "betterend",
"version": "${version}",
"name": "Better End",
"description": "More content for The End",
"authors": [
"paulevs",
"Bulldog83"
],
"contact": {
"homepage": "",
"sources": ""
},
"license": "MIT",
"icon": "assets/modid/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"ru.betterend.BetterEnd"
]
},
"mixins": [
"betterend.mixins.json"
],
"depends": {
"fabricloader": ">=0.7.4",
"fabric": "*",
"minecraft": "1.16.x"
},
"suggests": {
"flamingo": "*"
}
}