IDeath.java 225 B

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