mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-18 02:44:23 +01:00
17 lines
564 B
Java
17 lines
564 B
Java
|
package com.minelittlepony.unicopia.redux;
|
||
|
|
||
|
import com.minelittlepony.unicopia.core.UnicopiaCore;
|
||
|
import com.minelittlepony.unicopia.redux.container.BagOfHoldingContainer;
|
||
|
|
||
|
import net.fabricmc.fabric.api.container.ContainerProviderRegistry;
|
||
|
import net.minecraft.util.Identifier;
|
||
|
|
||
|
public class UContainers {
|
||
|
|
||
|
public static final Identifier BAG_OF_HOLDING = new Identifier(UnicopiaCore.MODID, "bag_of_holding");
|
||
|
|
||
|
public static void bootstrap() {
|
||
|
ContainerProviderRegistry.INSTANCE.registerFactory(BAG_OF_HOLDING, BagOfHoldingContainer::new);
|
||
|
}
|
||
|
}
|