Package net.minecraftforge.registries
Class GameData.PointOfInterestTypeCallbacks
- java.lang.Object
-
- net.minecraftforge.registries.GameData.PointOfInterestTypeCallbacks
-
- All Implemented Interfaces:
IForgeRegistry.AddCallback<PointOfInterestType>
,IForgeRegistry.ClearCallback<PointOfInterestType>
,IForgeRegistry.CreateCallback<PointOfInterestType>
- Enclosing class:
- GameData
private static class GameData.PointOfInterestTypeCallbacks extends java.lang.Object implements IForgeRegistry.AddCallback<PointOfInterestType>, IForgeRegistry.ClearCallback<PointOfInterestType>, IForgeRegistry.CreateCallback<PointOfInterestType>
-
-
Field Summary
Fields Modifier and Type Field Description (package private) static GameData.PointOfInterestTypeCallbacks
INSTANCE
-
Constructor Summary
Constructors Modifier Constructor Description private
PointOfInterestTypeCallbacks()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onAdd(IForgeRegistryInternal<PointOfInterestType> owner, RegistryManager stage, int id, PointOfInterestType obj, PointOfInterestType oldObj)
void
onClear(IForgeRegistryInternal<PointOfInterestType> owner, RegistryManager stage)
void
onCreate(IForgeRegistryInternal<PointOfInterestType> owner, RegistryManager stage)
-
-
-
Field Detail
-
INSTANCE
static final GameData.PointOfInterestTypeCallbacks INSTANCE
-
-
Method Detail
-
onAdd
public void onAdd(IForgeRegistryInternal<PointOfInterestType> owner, RegistryManager stage, int id, PointOfInterestType obj, @Nullable PointOfInterestType oldObj)
- Specified by:
onAdd
in interfaceIForgeRegistry.AddCallback<PointOfInterestType>
-
onClear
public void onClear(IForgeRegistryInternal<PointOfInterestType> owner, RegistryManager stage)
- Specified by:
onClear
in interfaceIForgeRegistry.ClearCallback<PointOfInterestType>
-
onCreate
public void onCreate(IForgeRegistryInternal<PointOfInterestType> owner, RegistryManager stage)
- Specified by:
onCreate
in interfaceIForgeRegistry.CreateCallback<PointOfInterestType>
-
-