First upload
This commit is contained in:
parent
f09ee4d630
commit
d807c9fd1c
15 changed files with 563 additions and 23 deletions
10
src/main/java/ru/bclib/BCLib.java
Normal file
10
src/main/java/ru/bclib/BCLib.java
Normal file
|
@ -0,0 +1,10 @@
|
|||
package ru.bclib;
|
||||
|
||||
import net.fabricmc.api.ModInitializer;
|
||||
|
||||
public class BCLib implements ModInitializer {
|
||||
public static final String MOD_ID = "bclib";
|
||||
|
||||
@Override
|
||||
public void onInitialize() {}
|
||||
}
|
BIN
src/main/resources/assets/bclib/icon.png
Normal file
BIN
src/main/resources/assets/bclib/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 40 KiB |
10
src/main/resources/bclib.mixins.client.json
Normal file
10
src/main/resources/bclib.mixins.client.json
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"required": true,
|
||||
"minVersion": "0.8",
|
||||
"package": "ru.bclib.mixin.client",
|
||||
"compatibilityLevel": "JAVA_8",
|
||||
"client": [],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
}
|
||||
}
|
10
src/main/resources/bclib.mixins.common.json
Normal file
10
src/main/resources/bclib.mixins.common.json
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"required": true,
|
||||
"minVersion": "0.8",
|
||||
"package": "ru.bclib.mixin.common",
|
||||
"compatibilityLevel": "JAVA_8",
|
||||
"mixins": [],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
}
|
||||
}
|
37
src/main/resources/fabric.mod.json
Normal file
37
src/main/resources/fabric.mod.json
Normal file
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "bclib",
|
||||
"version": "${version}",
|
||||
|
||||
"name": "BCLib",
|
||||
"description": "A library for BetterX team mods",
|
||||
"authors": [
|
||||
"paulevs",
|
||||
"Bulldog83"
|
||||
],
|
||||
"contact": {
|
||||
"homepage": "https://www.curseforge.com/minecraft/mc-mods/bclib",
|
||||
"issues": "https://github.com/paulevsGitch/bclib/issues",
|
||||
"sources": "https://github.com/paulevsGitch/bclib"
|
||||
},
|
||||
|
||||
"license": "MIT",
|
||||
"icon": "assets/bclib/icon.png",
|
||||
|
||||
"environment": "*",
|
||||
"entrypoints": {
|
||||
"main": [
|
||||
"ru.bclib.BCLib"
|
||||
]
|
||||
},
|
||||
"mixins": [
|
||||
"bclib.mixins.common.json",
|
||||
"bclib.mixins.client.json"
|
||||
],
|
||||
|
||||
"depends": {
|
||||
"fabricloader": ">=0.11.0",
|
||||
"fabric": ">=0.32.0",
|
||||
"minecraft": ">=1.16.4"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue