TelluriumForge
TelluriumForge is a specialized library designed for Minecraft mod developers. This mod itself doesn't add any new content to the game - its main function is to provide convenient tools for creating other modifications.
Main Library Features
The library includes a wide range of useful methods and classes that significantly simplify the development process:
- Simplified registration of game objects: blocks, items, entities and other elements
- Convenient work with Fabric events
- Efficient handling of network interaction for block entities
- Creation of configuration files and settings screens directly in the game
- Helper class for maintaining logs in the game environment
- Management of cursor position in game interfaces
All functions are accompanied by detailed documentation available both in the development environment and on GitHub through the source code page.
Usage in Project
To connect the library to your project, use the Modrinth Maven repository:
repositories {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
dependencies {
modImplementation 'maven.modrinth:telluriumforge:version' // Replace version with the desired version
}
The library is available for free use by all developers subject to compliance with license agreements.