mirror of
https://codeberg.org/moonleay/Gimbal.git
synced 2025-06-06 16:36:16 +02:00
big bang
This commit is contained in:
commit
a81900c6e8
16 changed files with 750 additions and 0 deletions
38
src/main/resources/fabric.mod.json
Normal file
38
src/main/resources/fabric.mod.json
Normal file
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "${modId}",
|
||||
"version": "${modVersion}",
|
||||
"name": "${modName}",
|
||||
"description": "An open source building assist mod featuring vim-like modes.",
|
||||
"authors": [
|
||||
"moonleay"
|
||||
],
|
||||
"contact": {},
|
||||
"license": "GPL-3.0",
|
||||
"environment": "*",
|
||||
"entrypoints": {
|
||||
"client": [
|
||||
{
|
||||
"adapter": "kotlin",
|
||||
"value": "net.moonleay.mods.gimble.client.ClientMain"
|
||||
}
|
||||
],
|
||||
"main": [
|
||||
{
|
||||
"adapter": "kotlin",
|
||||
"value": "net.moonleay.mods.gimble.Main"
|
||||
}
|
||||
]
|
||||
},
|
||||
"mixins": [
|
||||
"${modId}.mixins.json"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=${fabricLoaderVersion}",
|
||||
"fabric": "*",
|
||||
"fabric-language-kotlin": ">=${fabricKotlinVersion}",
|
||||
"huebcraftconfiglib": "${configlibVersion}",
|
||||
"minecraft": "${minecraftVersion}"
|
||||
},
|
||||
"accessWidener": "${modId}.accesswidener"
|
||||
}
|
4
src/main/resources/gimble.accesswidener
Normal file
4
src/main/resources/gimble.accesswidener
Normal file
|
@ -0,0 +1,4 @@
|
|||
accessWidener v2 named
|
||||
|
||||
accessible method net/minecraft/client/MinecraftClient handleBlockBreaking (Z)V
|
||||
accessible method net/minecraft/client/network/ClientPlayerInteractionManager sendSequencedPacket (Lnet/minecraft/client/world/ClientWorld;Lnet/minecraft/client/network/SequencedPacketCreator;)V
|
16
src/main/resources/gimble.mixins.json
Normal file
16
src/main/resources/gimble.mixins.json
Normal file
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"required": true,
|
||||
"minVersion": "0.8",
|
||||
"package": "net.moonleay.mods.gimble.mixin",
|
||||
"compatibilityLevel": "JAVA_17",
|
||||
"mixins": [
|
||||
],
|
||||
"client": [
|
||||
"HudMixin",
|
||||
"NormalModeMixin",
|
||||
"ReplaceModeMixin"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue