Guest User

Untitled

a guest
Oct 11th, 2020
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. public class ModContainerTypes {
  2. public static final DeferredRegister<ContainerType<?>> CONTAINER_TYPES = new DeferredRegister<>(
  3. ForgeRegistries.CONTAINERS, Charms.CHARMS);
  4.  
  5. public static final RegistryObject<ContainerType<CharmContainer>> CHARM_CONTAINER = CONTAINER_TYPES
  6. .register("charm_container", () -> IForgeContainerType.create(CharmContainer::new));
  7. }
Add Comment
Please, Sign In to add comment