inti
This commit is contained in:
19
src/main/resources/META-INF/mods.toml
Normal file
19
src/main/resources/META-INF/mods.toml
Normal 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"
|
||||
19
src/main/resources/META-INF/neoforge.mods.toml
Normal file
19
src/main/resources/META-INF/neoforge.mods.toml
Normal 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"
|
||||
3
src/main/resources/architectury.common.json
Normal file
3
src/main/resources/architectury.common.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"accessWidener": "customcursor.accesswidener"
|
||||
}
|
||||
BIN
src/main/resources/assets/customcursor/icon.png
Normal file
BIN
src/main/resources/assets/customcursor/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 11 KiB |
4
src/main/resources/assets/customcursor/lang/en_us.json
Normal file
4
src/main/resources/assets/customcursor/lang/en_us.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"customcursor.confirm": "Confirm",
|
||||
"customcursor.cancel": "Cancel"
|
||||
}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 594 B |
BIN
src/main/resources/assets/customcursor/textures/gui/pointer.png
Normal file
BIN
src/main/resources/assets/customcursor/textures/gui/pointer.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 163 B |
11
src/main/resources/customcursor-common.mixins.json
Normal file
11
src/main/resources/customcursor-common.mixins.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"required": true,
|
||||
"package": "io.github.jumperonjava.customcursor.mixin",
|
||||
"compatibilityLevel": "JAVA_17",
|
||||
"mixins": [
|
||||
"ExampleMixin"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
}
|
||||
}
|
||||
10
src/main/resources/customcursor-fabric.mixins.json
Normal file
10
src/main/resources/customcursor-fabric.mixins.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"required": true,
|
||||
"package": "io.github.jumperonjava.customcursor.platforms.fabric.mixin",
|
||||
"compatibilityLevel": "JAVA_17",
|
||||
"mixins": [
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
}
|
||||
}
|
||||
10
src/main/resources/customcursor-forge.mixins.json
Normal file
10
src/main/resources/customcursor-forge.mixins.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"required": true,
|
||||
"package": "io.github.jumperonjava.customcursor.platforms.forge.mixin",
|
||||
"compatibilityLevel": "JAVA_17",
|
||||
"mixins": [
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
}
|
||||
}
|
||||
10
src/main/resources/customcursor-neoforge.mixins.json
Normal file
10
src/main/resources/customcursor-neoforge.mixins.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"required": true,
|
||||
"package": "io.github.jumperonjava.customcursor.platforms.neoforge.mixin",
|
||||
"compatibilityLevel": "JAVA_17",
|
||||
"mixins": [
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
}
|
||||
}
|
||||
1
src/main/resources/customcursor.accesswidener
Normal file
1
src/main/resources/customcursor.accesswidener
Normal file
@@ -0,0 +1 @@
|
||||
accessWidener v2 named
|
||||
31
src/main/resources/fabric.mod.json
Normal file
31
src/main/resources/fabric.mod.json
Normal 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}"
|
||||
}
|
||||
}
|
||||
6
src/main/resources/pack.mcmeta
Normal file
6
src/main/resources/pack.mcmeta
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"pack": {
|
||||
"description": "${name}",
|
||||
"pack_format": 15
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user