-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d187df6
commit 6c4cd8f
Showing
45 changed files
with
273 additions
and
367 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
# Done to increase the memory available to gradle. | ||
org.gradle.jvmargs=-Xmx2G | ||
|
||
minecraft_version=1.21.1 | ||
yalmm_mappings=2 | ||
loader_version=0.15.11 | ||
minecraft_version=1.21.2-rc1 | ||
yalmm_mappings=4 | ||
loader_version=0.16.7 | ||
|
||
# Mod Properties | ||
mod_version=5.1.0 | ||
mod_version=6.0.0+1.21.2 | ||
maven_group=dev.lambdaurora | ||
archives_base_name=spruceui | ||
|
||
# Dependencies | ||
# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api | ||
fabric_api_version=0.100.4+1.21 | ||
modmenu_version=11.0.1 | ||
fabric_api_version=0.106.0+1.21.2 | ||
modmenu_version=12.0.0-beta.1 |
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* Copyright © 2024 LambdAurora <[email protected]> | ||
* | ||
* This file is part of SpruceUI. | ||
* | ||
* Licensed under the MIT license. For more information, | ||
* see the LICENSE file. | ||
*/ | ||
|
||
package dev.lambdaurora.spruceui; | ||
|
||
import net.minecraft.resources.Identifier; | ||
|
||
/** | ||
* Contains common constants from SpruceUI. | ||
* | ||
* @author LambdAurora | ||
* @version 6.0.0 | ||
* @since 6.0.0 | ||
*/ | ||
public final class SpruceUI { | ||
/** | ||
* The namespace of SpruceUI, whose value is {@value}. | ||
*/ | ||
public static final String NAMESPACE = "spruceui"; | ||
|
||
/** | ||
* {@return a SpruceUI identifier from the given path} | ||
* | ||
* @param path the path | ||
*/ | ||
public static Identifier id(String path) { | ||
return Identifier.of(NAMESPACE, path); | ||
} | ||
|
||
private SpruceUI() { | ||
throw new UnsupportedOperationException("SpruceUi only contains static definitions."); | ||
} | ||
} |
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
Oops, something went wrong.