IDespawn.java 231 B

12345678910
  1. package me.hammerle.supersnuvi.entity.components;
  2. import me.hammerle.supersnuvi.entity.Entity;
  3. public interface IDespawn
  4. {
  5. public static final IDespawn NULL = (Entity ent) -> {};
  6. public void onDespawn(Entity ent);
  7. }