mirror of
https://github.com/PuzzleMC/Puzzle.git
synced 2025-12-16 03:45:10 +01:00
First beta build
Most basic features work Support for some mods
This commit is contained in:
BIN
src/main/resources/assets/puzzle/icon.png
Executable file
BIN
src/main/resources/assets/puzzle/icon.png
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 3.2 KiB |
BIN
src/main/resources/assets/puzzle/icon512.png
Executable file
BIN
src/main/resources/assets/puzzle/icon512.png
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 7.2 KiB |
9
src/main/resources/assets/puzzle/lang/en_us.json
Executable file
9
src/main/resources/assets/puzzle/lang/en_us.json
Executable file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"puzzle.screen.title":"Puzzle Settings",
|
||||
"puzzle.page.graphics":"Graphics Settings",
|
||||
"puzzle.page.textures":"Texture Settings",
|
||||
"puzzle.page.performance":"Performance Settings",
|
||||
"puzzle.page.misc":"Miscellaneous Settings",
|
||||
"puzzle.option.ctm":"Connected Textures",
|
||||
"puzzle.option.inside_ctm":"Connect Inside Textures"
|
||||
}
|
||||
BIN
src/main/resources/assets/puzzle/logo.pdn
Executable file
BIN
src/main/resources/assets/puzzle/logo.pdn
Executable file
Binary file not shown.
38
src/main/resources/fabric.mod.json
Executable file
38
src/main/resources/fabric.mod.json
Executable file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "puzzle",
|
||||
"version": "${version}",
|
||||
|
||||
"name": "Puzzle",
|
||||
"description": "Unites optifine replacement mods in a clean & vanilla-style gui",
|
||||
"authors": [
|
||||
"Motschen",
|
||||
"TeamMidnightDust"
|
||||
],
|
||||
"contact": {
|
||||
"homepage": "https://www.midnightdust.eu/",
|
||||
"sources": "https://github.com/TeamMidnightDust/Puzzle",
|
||||
"issues": "https://github.com/TeamMidnightDust/Puzzle/issues"
|
||||
},
|
||||
|
||||
"license": "MIT",
|
||||
"icon": "assets/puzzle/icon.png",
|
||||
|
||||
"environment": "*",
|
||||
"entrypoints": {
|
||||
"client": [
|
||||
"eu.midnightdust.puzzle.PuzzleClient"
|
||||
],
|
||||
"modmenu": [
|
||||
"eu.midnightdust.puzzle.config.ModMenuIntegration"
|
||||
]
|
||||
},
|
||||
|
||||
"mixins": [
|
||||
"puzzle.mixins.json"
|
||||
],
|
||||
|
||||
"depends": {
|
||||
"fabric": "*"
|
||||
}
|
||||
}
|
||||
11
src/main/resources/puzzle.mixins.json
Executable file
11
src/main/resources/puzzle.mixins.json
Executable file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"required": true,
|
||||
"package": "eu.midnightdust.puzzle.mixin",
|
||||
"compatibilityLevel": "JAVA_8",
|
||||
"client": [
|
||||
"MixinOptionsScreen"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user