fabric-lifecycle-events-v1-2.6.9+33df5e6e6f.jar

Download file
    package net.fabricmc.fabric.api.event.lifecycle.v1;

import net.fabricmc.fabric.api.event.Event;
import net.fabricmc.fabric.api.event.EventFactory;
import net.minecraft.class_5455;

public final class CommonLifecycleEvents {
   public static final Event<TagsLoaded> TAGS_LOADED = EventFactory.createArrayBacked(TagsLoaded.class, (callbacks) -> (registries, client) -> {
         for(TagsLoaded callback : callbacks) {
            callback.onTagsLoaded(registries, client);
         }

      });

   private CommonLifecycleEvents() {
   }

   public interface TagsLoaded {
      void onTagsLoaded(class_5455 var1, boolean var2);
   }
}
    
Download file