IJump.java 169 B

12345678
  1. package me.hammerle.supersnuvi.entity.components;
  2. import me.hammerle.supersnuvi.entity.Entity;
  3. public interface IJump
  4. {
  5. public double getJumpPower(Entity ent);
  6. }