Download Integration — Minecraft Mods — MetaMods

Integration

Active

Downloads

0

Last update

1 month ago

Versions

1.13 — 1.21.8
Client
Fabric
Forge
Neoforge
Libraries
Utils

Integration

This mod is a library designed to simplify the integration process between various Minecraft modifications. It serves as a helper tool for developers, allowing them to create compatible add-ons more effectively.

A key feature of this library is that it's built on loader APIs rather than directly on Minecraft. Thanks to this approach, the mod can work on any game version provided the used loader supports it.

Core Features

The library provides two key APIs for developers:

  • IntegrationExecutor - allows safely executing integration code only when the target mod is loaded
  • EntryPointManager - offers customizable entry points based on annotations (Forge/NeoForge) and EntryPoint (Fabric)

Usage Examples

Integration with example-mod

IntegrationExecutor.runWhenLoad("example-mod",()->()->{
        //Your code here
        });

Custom entry point configuration


@EntryPointProvider(slug = "example-mod")
public class ExampleModIntegration implements IntegrationEntryPoint {
    //Your code here
}
//fabric.mod.json
{
  //Other parts
  "entrypoints": {
    "example-mod": [
      "xxx.ExampleModIntegration"
    ]
  },
}

Getting entry points:

EntryPointManager.getEntryPoints("example-mod");
Project members
IAFEnvoy

IAFEnvoy

Developer

Created: 21 Aug 2025

ID: 262524