mirror of
https://github.com/trafficlunar/options-profiles.git
synced 2026-06-28 14:44:10 +00:00
Initial commit
This commit is contained in:
commit
f41871f359
40 changed files with 2073 additions and 0 deletions
|
|
@ -0,0 +1,11 @@
|
|||
package com.axolotlmaid.optionsprofiles.fabric;
|
||||
|
||||
import com.axolotlmaid.optionsprofiles.OptionsProfilesMod;
|
||||
import net.fabricmc.api.ModInitializer;
|
||||
|
||||
public class OptionsProfilesModFabric implements ModInitializer {
|
||||
@Override
|
||||
public void onInitialize() {
|
||||
OptionsProfilesMod.init();
|
||||
}
|
||||
}
|
||||
BIN
fabric/src/main/resources/assets/optionsprofiles/icon.png
Normal file
BIN
fabric/src/main/resources/assets/optionsprofiles/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.6 KiB |
32
fabric/src/main/resources/fabric.mod.json
Normal file
32
fabric/src/main/resources/fabric.mod.json
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "optionsprofiles",
|
||||
"version": "${version}",
|
||||
"name": "Options Profiles",
|
||||
"description": "Load and save your options from in-game.",
|
||||
"authors": [
|
||||
"AxolotlMaid"
|
||||
],
|
||||
"contact": {
|
||||
"homepage": "https://github.com/AxolotlMaid/options-profiles",
|
||||
"sources": "https://github.com/AxolotlMaid/options-profiles",
|
||||
"issues": "https://github.com/AxolotlMaid/options-profiles/issues"
|
||||
},
|
||||
"license": "GNU GPL 3.0",
|
||||
"icon": "assets/optionsprofiles/icon.png",
|
||||
"environment": "*",
|
||||
"entrypoints": {
|
||||
"main": [
|
||||
"com.axolotlmaid.optionsprofiles.fabric.OptionsProfilesModFabric"
|
||||
]
|
||||
},
|
||||
"mixins": [
|
||||
"optionsprofiles.mixins.json",
|
||||
"optionsprofiles-common.mixins.json"
|
||||
],
|
||||
"depends": {
|
||||
"fabric": "*",
|
||||
"minecraft": ">=1.20.1",
|
||||
"architectury": ">=9.1.12"
|
||||
}
|
||||
}
|
||||
13
fabric/src/main/resources/optionsprofiles.mixins.json
Normal file
13
fabric/src/main/resources/optionsprofiles.mixins.json
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"required": true,
|
||||
"package": "com.axolotlmaid.optionsprofiles.mixin.fabric",
|
||||
"compatibilityLevel": "JAVA_17",
|
||||
"minVersion": "0.8",
|
||||
"client": [
|
||||
],
|
||||
"mixins": [
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue