-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: boring boilerplate needed to work with Kotlin, queue The Kotli…
…n Rewrite™!
- Loading branch information
Showing
5 changed files
with
60 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,38 @@ | ||
{ | ||
"schemaVersion": 1, | ||
"id": "opensigma", | ||
"version": "${version}", | ||
"name": "opensigma", | ||
"description": "This is an example description! Tell everyone what your mod is about!", | ||
"authors": [ | ||
"Me!" | ||
], | ||
"contact": { | ||
"homepage": "https://fabricmc.net/", | ||
"sources": "https://github.com/FabricMC/fabric-example-mod" | ||
}, | ||
"license": "MIT", | ||
"icon": "assets/opensigma/icon.png", | ||
"environment": "*", | ||
"entrypoints": { | ||
"main": [ | ||
"info.opensigma.OpenSigma" | ||
] | ||
}, | ||
"mixins": [ | ||
"opensigma.mixins.json" | ||
], | ||
"depends": { | ||
"fabricloader": ">=0.15.11", | ||
"minecraft": "~1.16.4", | ||
"java": ">=8", | ||
"fabric": "*" | ||
}, | ||
"suggests": { | ||
"another-mod": "*" | ||
} | ||
"schemaVersion": 1, | ||
"id": "opensigma", | ||
"version": "${version}", | ||
"name": "opensigma", | ||
"description": "This is an example description! Tell everyone what your mod is about!", | ||
"authors": [ | ||
"Me!" | ||
], | ||
"contact": { | ||
"homepage": "https://fabricmc.net/", | ||
"sources": "https://github.com/FabricMC/fabric-example-mod" | ||
}, | ||
"license": "MIT", | ||
"icon": "assets/opensigma/icon.png", | ||
"environment": "*", | ||
"entrypoints": { | ||
"main": [ | ||
{ | ||
"adapter": "kotlin", | ||
"value": "info.opensigma.OpenSigma" | ||
} | ||
] | ||
}, | ||
"mixins": [ | ||
"opensigma.mixins.json" | ||
], | ||
"depends": { | ||
"fabricloader": ">=0.15.11", | ||
"fabric-language-kotlin": ">=1.13.0+kotlin.${kotlin_version}", | ||
"minecraft": "~1.16.4", | ||
"java": ">=8", | ||
"fabric": "*" | ||
}, | ||
"suggests": { | ||
"another-mod": "*" | ||
} | ||
} |