/* * This file ("ContainerSectionCallback.java") is part of the Actually Additions Mod for Minecraft. * It is created and owned by Ellpeck and distributed * under the Actually Additions License to be found at * http://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md * View the source code at https://github.com/Ellpeck/ActuallyAdditions * * © 2015 Ellpeck */ package invtweaks.api.container; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * A marker for a method to call which returns the set of ContainerSections for this container. *

* Signature of the method should be Map> func() */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface ContainerSectionCallback { }