Interface EntityLoader<T>

All Known Implementing Classes:
ClientWorld.EntityLoader, ServerWorld.EntityLoader

public interface EntityLoader<T>
Isolates client and server side specific logic when loading and unloading entities to and from a world.
  • Method Details

    • method_31802

      void method_31802​(T entity)
    • destroyEntity

      void destroyEntity​(T entity)
    • addEntity

      void addEntity​(T entity)
    • removeEntity

      void removeEntity​(T entity)
    • onLoadEntity

      void onLoadEntity​(T entity)
    • onUnloadEntity

      void onUnloadEntity​(T entity)