diff options
Diffstat (limited to 'src/main/resources')
| -rw-r--r-- | src/main/resources/assets/valvesneak/icon.png | bin | 0 -> 181 bytes | |||
| -rw-r--r-- | src/main/resources/assets/valvesneak/lang/en_us.json | 3 | ||||
| -rw-r--r-- | src/main/resources/fabric.mod.json | 35 | ||||
| -rw-r--r-- | src/main/resources/valvesneak.mixins.json | 14 |
4 files changed, 52 insertions, 0 deletions
diff --git a/src/main/resources/assets/valvesneak/icon.png b/src/main/resources/assets/valvesneak/icon.png Binary files differnew file mode 100644 index 0000000..6dbef2d --- /dev/null +++ b/src/main/resources/assets/valvesneak/icon.png diff --git a/src/main/resources/assets/valvesneak/lang/en_us.json b/src/main/resources/assets/valvesneak/lang/en_us.json new file mode 100644 index 0000000..00bf1d1 --- /dev/null +++ b/src/main/resources/assets/valvesneak/lang/en_us.json @@ -0,0 +1,3 @@ +{ + "key.valvesneak.walk": "Walk" +}
\ No newline at end of file diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..fe513b6 --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,35 @@ +{ + "schemaVersion": 1, + "id": "valvesneak", + "version": "${version}", + "name": "ValveSneak", + "description": "Sprinting like Valve games.", + "authors": [], + "contact": {}, + "license": "MIT", + "icon": "assets/valvesneak/icon.png", + "environment": "client", + "entrypoints": { + "fabric-datagen": [ + "eu.projnull.spelis.valvesneak.client.ValvesneakDataGenerator" + ], + "client": [ + "eu.projnull.spelis.valvesneak.client.ValvesneakClient" + ], + "main": [ + "eu.projnull.spelis.valvesneak.Valvesneak" + ] + }, + "mixins": [ + "valvesneak.mixins.json", + { + "config": "valvesneak.client.mixins.json", + "environment": "client" + } + ], + "depends": { + "fabricloader": "*", + "fabric": "*", + "minecraft": "*" + } +} diff --git a/src/main/resources/valvesneak.mixins.json b/src/main/resources/valvesneak.mixins.json new file mode 100644 index 0000000..ae5b49b --- /dev/null +++ b/src/main/resources/valvesneak.mixins.json @@ -0,0 +1,14 @@ +{ + "required": true, + "minVersion": "0.8", + "package": "eu.projnull.spelis.valvesneak.mixin", + "compatibilityLevel": "JAVA_8", + "mixins": [ + ], + "injectors": { + "defaultRequire": 1 + }, + "overwrites": { + "requireAnnotations": true + } +} |
