mirror of
https://github.com/trafficlunar/options-profiles.git
synced 2026-06-28 06:34:11 +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.forge;
|
||||
|
||||
import com.axolotlmaid.optionsprofiles.OptionsProfilesMod;
|
||||
import net.minecraftforge.fml.common.Mod;
|
||||
|
||||
@Mod(OptionsProfilesMod.MOD_ID)
|
||||
public class OptionsProfilesModForge {
|
||||
public OptionsProfilesModForge() {
|
||||
OptionsProfilesMod.init();
|
||||
}
|
||||
}
|
||||
35
forge/src/main/resources/META-INF/mods.toml
Normal file
35
forge/src/main/resources/META-INF/mods.toml
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
modLoader = "javafml"
|
||||
loaderVersion = "[47,)"
|
||||
#issueTrackerURL = ""
|
||||
license = "GNU GPL 3.0"
|
||||
|
||||
[[mods]]
|
||||
modId = "optionsprofiles"
|
||||
version = "${version}"
|
||||
displayName = "Options Profiles"
|
||||
authors = "AxolotlMaid"
|
||||
description = '''
|
||||
Load and save your options from in-game.
|
||||
'''
|
||||
logoFile = "icon.png"
|
||||
|
||||
[[dependencies.examplemod]]
|
||||
modId = "forge"
|
||||
mandatory = true
|
||||
versionRange = "[47,)"
|
||||
ordering = "NONE"
|
||||
side = "BOTH"
|
||||
|
||||
[[dependencies.examplemod]]
|
||||
modId = "minecraft"
|
||||
mandatory = true
|
||||
versionRange = "[1.20.1,)"
|
||||
ordering = "NONE"
|
||||
side = "BOTH"
|
||||
|
||||
[[dependencies.examplemod]]
|
||||
modId = "architectury"
|
||||
mandatory = true
|
||||
versionRange = "[9.1.12,)"
|
||||
ordering = "AFTER"
|
||||
side = "BOTH"
|
||||
BIN
forge/src/main/resources/icon.png
Normal file
BIN
forge/src/main/resources/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.6 KiB |
13
forge/src/main/resources/optionsprofiles.mixins.json
Normal file
13
forge/src/main/resources/optionsprofiles.mixins.json
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"required": true,
|
||||
"package": "com.axolotlmaid.optionsprofiles.mixin.forge",
|
||||
"compatibilityLevel": "JAVA_17",
|
||||
"minVersion": "0.8",
|
||||
"client": [
|
||||
],
|
||||
"mixins": [
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
}
|
||||
}
|
||||
6
forge/src/main/resources/pack.mcmeta
Normal file
6
forge/src/main/resources/pack.mcmeta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"pack": {
|
||||
"description": "Options Profiles",
|
||||
"pack_format": 15
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue