Compatibility
Minecraft: Java Edition
Platforms
Supported environments
Tags
Creators
Details
🌻 GeezAPI
The core library powering all Sunflower mods.
GeezAPI is a lightweight, shared code library for my mods and modpacks. It does nothing on its own, but is required for mods like Sunflower's QoL to work.
Designed for performance, compatibility and easy development on Fabric & NeoForge.
📦 Loader Support
🔧 What's Inside?
GeezAPI is not a content mod. It's a toolbox for developers and modpack makers.
1. GeezEvents A unified event system wrapping Architectury API. Clean hooks you can use in any of your mods:
- CROP_HARVESTED
- TREE_FELLED
- SPAWNER_COLLECTED
2. GeezTags Centralized custom tags for all my mods:
- geezapi:timber_logs
- geezapi:harvestable_crops
3. GeezConfigHelper Simple wrapper for Cloth Config. Create configs for your own mods in 3 lines.
4. Version & Utils
- GeezAPI.VERSION - always know which library version is loaded
- Helpers for XP, enchantments, block breaking
👨💻 For Developers
Add GeezAPI to your project as a dependency:
Fabric - build.gradle modImplementation "com.sunflower:geezapi-common-1.0.0"
NeoForge - build.gradle implementation fg.deobf("com.sunflower:geezapi-common-1.0.0")
Then in code: import com.sunflower.enhancedvanilla.api.GeezAPI; GeezEvents.CROP_HARVESTED.register((player, pos, stack) -> { // Your logic here });
📋 Requirements
[Requires Architectury API](https://modrinth.com/mod/architectury-api) [Requires Cloth Config](https://modrinth.com/mod/cloth-config)
- Minecraft 1.21.11
- Fabric / NeoForge
- Architectury API
- Cloth Config
❓ FAQ
Q: Does GeezAPI do anything alone? A: No. It's a library. Install it because another mod requires it.
Q: Can I use it in my modpack? A: Yes! It's made for modpacks. No permission needed, just include it.
Q: Is it server-safe? A: Yes, fully client & server sided.
Built for Sunflower's Enhanced Vanilla and all future Sunflower projects. 🌻


