This commit is contained in:
ipz233_vvv
2025-01-15 13:49:00 +02:00
commit 396a88366f
53 changed files with 1379 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
modLoader = "javafml"
loaderVersion = "*"
license = "LGPLv3"
issueTrackerURL="https://JavaJumper/CustomCursor/issues"
[[mods]]
modId = "customcursor"
version = "${version}"
displayName = "${name}"
authors = "JavaJumper"
description = ""
logoFile = "assets/customcursor/icon.png"
logoBlur = false
[[mixins]]
config = "customcursor-common.mixins.json"
[[mixins]]
config = "customcursor-neoforge.mixins.json"

View File

@@ -0,0 +1,19 @@
modLoader = "javafml"
loaderVersion = "*"
license = "LGPLv3"
issueTrackerURL="https://JavaJumper/CustomCursor/issues"
[[mods]]
modId = "customcursor"
version = "${version}"
displayName = "${name}"
authors = "JavaJumper"
description = ""
logoFile = "assets/customcursor/icon.png"
logoBlur = false
[[mixins]]
config = "customcursor-common.mixins.json"
[[mixins]]
config = "customcursor-neoforge.mixins.json"

View File

@@ -0,0 +1,3 @@
{
"accessWidener": "customcursor.accesswidener"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -0,0 +1,4 @@
{
"customcursor.confirm": "Confirm",
"customcursor.cancel": "Cancel"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 594 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 B

View File

@@ -0,0 +1,11 @@
{
"required": true,
"package": "io.github.jumperonjava.customcursor.mixin",
"compatibilityLevel": "JAVA_17",
"mixins": [
"ExampleMixin"
],
"injectors": {
"defaultRequire": 1
}
}

View File

@@ -0,0 +1,10 @@
{
"required": true,
"package": "io.github.jumperonjava.customcursor.platforms.fabric.mixin",
"compatibilityLevel": "JAVA_17",
"mixins": [
],
"injectors": {
"defaultRequire": 1
}
}

View File

@@ -0,0 +1,10 @@
{
"required": true,
"package": "io.github.jumperonjava.customcursor.platforms.forge.mixin",
"compatibilityLevel": "JAVA_17",
"mixins": [
],
"injectors": {
"defaultRequire": 1
}
}

View File

@@ -0,0 +1,10 @@
{
"required": true,
"package": "io.github.jumperonjava.customcursor.platforms.neoforge.mixin",
"compatibilityLevel": "JAVA_17",
"mixins": [
],
"injectors": {
"defaultRequire": 1
}
}

View File

@@ -0,0 +1 @@
accessWidener v2 named

View File

@@ -0,0 +1,31 @@
{
"schemaVersion": 1,
"id": "${id}",
"version": "${version}",
"name": "${name}",
"description": "",
"authors": [
"JavaJumper"
],
"contact": {
},
"license": "LGPLv3",
"icon": "assets/${id}/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"io.github.jumperonjava.customcursor.platforms.fabric.CustomCursorFabric"
],
"modmenu": [
"io.github.jumperonjava.customcursor.platforms.fabric.ModMenuIntegration"
]
},
"mixins": [
"customcursor-common.mixins.json",
"customcursor-fabric.mixins.json"
],
"depends": {
"fabricloader": ">=0.15",
"minecraft": "${minecraft}"
}
}

View File

@@ -0,0 +1,6 @@
{
"pack": {
"description": "${name}",
"pack_format": 15
}
}