
Roadworks SDK Forge
This mod serves as a library designed for developers of other mods. It provides a set of advanced tools and utilities that can be utilized in various projects.
Currently implemented features include:
- Controller support (in development stage)
- Partial GUI support
It's important to note that these features are in early implementation stages and may contain bugs. Some functions may work incorrectly or unstably. Developers encourage users to report found issues and suggest fixes, especially regarding new control systems.
Using this mod may affect gameplay, so use at your own risk.
To connect the library in your project, use the following code:
repositories { maven { url "https://hrznstudio.com/maven/release" } maven { url "https://hrznstudio.com/maven/snapshot" // Use this repository for beta versions } } dependencies { provided 'com.hrznstudio.roadworks:roadworks-sdk-forge:[VERSION]:api' // Can be included in a mod, does nothing by itself runtime 'com.hrznstudio.roadworks:roadworks-sdk-forge:[VERSION]:deobf' }