Compatibility
Minecraft: Java Edition
1.21.10
Platforms
Supported environments
Links
Creators
Details
Licensed CC-BY-NC-4.0
Published 3 weeks ago
Updated 4 weeks ago
Eclipse API
Eclipse API is a lightweight Fabric library mod that provides simple and effective helpers for developing mods. It aims to streamline the process of creating blocks, items, GUI, and way more. It allows creators to fixate on their creativity rather than repetitive boilerplate.
Features
- Simplified Item Registration
- Register simple and advanced items within a single statement.
- Automatically add them to creative tabs.
- Lightweight and Compatible
- This mod works as a dependency for any mod.
- No external configuration or setup required.
- Compatible with any Fabric mod because it doesn't interfere with runtime.
- Lightweight as you only use the methods you need.
- More Coming Soon!
Example Usage
ItemFactory factory = new ItemFactory("mymodid");
factory.registerBasicItem("my_item");
Installation
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
modImplementation "com.github.ljws11:eclipse-api:0.1-1.21.10"
}



